:root {
  --bg: #08090a;
  --panel: #101112;
  --line: #1d1e1e;
  --muted: #898e98;
  --soft: #d8d8d8;
  --white: #fff;
  --page-padding: clamp(24px, 5.55vw, 80px);
}

@font-face {
  font-family: "LiciumFont 2022";
  src:
    url("./assets/fonts/LiciumFont2022-Normal.otf") format("opentype"),
    local("LiciumFont 2022 Normal"),
    local("LICIUMFONT2022-NORMAL"),
    local("LiciumFont2022-Normal");
  font-style: normal;
  font-weight: 350;
  font-display: swap;
}

@font-face {
  font-family: "LiciumFont 2022";
  src:
    url("./assets/fonts/LiciumFont2022-Regular.otf") format("opentype"),
    local("LiciumFont 2022 Regular"),
    local("LICIUMFONT2022-REGULAR"),
    local("LiciumFont2022-Regular");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter About";
  src: url("./assets/fonts/Inter-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Inter About";
  src: url("./assets/fonts/Inter-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #4a4d52 var(--bg);
  scrollbar-width: thin;
}

/* Keep the page scrollbar quiet and proportional to the dark interface. */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  min-height: 64px;
  border: 3px solid var(--bg);
  border-radius: 999px;
  background: #4a4d52;
}

::-webkit-scrollbar-thumb:hover {
  background: #737780;
}

::-webkit-scrollbar-corner {
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-padding);
  border-bottom: 1px solid var(--line);
  background: rgb(8 9 10 / 88%);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
}

.brand img {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
}

.site-nav a {
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-cta {
  margin-left: 10px;
  padding: 9px 17px;
  border-radius: 99px;
  background: var(--white);
  color: var(--bg);
  font-weight: 500;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #dedede;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: white;
}

.menu-button__line {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 546px;
  padding: 237px var(--page-padding) 80px;
  overflow: visible;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.eyebrow,
.section-label,
.project-card__index,
.work__rail > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.hero h1 {
  margin: 28px 0 4px;
  font-size: clamp(42px, 4.16vw, 60px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero__statement {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0 5px;
  color: var(--soft);
  font-size: clamp(38px, 3.75vw, 54px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.typewriter {
  min-width: 0;
  white-space: nowrap;
}

.cursor {
  width: 1px;
  height: 1.22em;
  background: #777;
  animation: blink 1.2s step-end infinite;
}

.hero__visual {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -57px;
  width: min(51.5vw, 741px);
  height: 494px;
  transform: scale(.9);
  transform-origin: right bottom;
  pointer-events: none;
}

.robot-interaction {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.robot-interaction:focus-visible {
  outline: none;
}

.robot-original {
  position: absolute;
  inset: 0;
  animation: settle-in 800ms cubic-bezier(.2,.8,.2,1) both, float 5s ease-in-out 800ms infinite;
}

.robot-original img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.robot-idle {
  position: absolute;
  inset: 0;
  display: block;
  animation: robot-rig-in 800ms cubic-bezier(.2,.8,.2,1) both;
  transform-origin: 53% 91%;
}

.robot-idle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(var(--robot-pivot-rotate, 0deg));
  transform-origin: 58% 78%;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.robot-reply {
  position: absolute;
  z-index: 3;
  top: 4%;
  left: 70%;
  padding: 9px 13px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 999px;
  color: rgb(255 255 255 / 88%);
  background: rgb(17 18 21 / 78%);
  box-shadow: 0 10px 30px rgb(0 0 0 / 24%);
  backdrop-filter: blur(12px);
  font: 500 12px/1 system-ui, sans-serif;
  letter-spacing: .02em;
  text-align: left;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(7px) scale(.96);
  transition: opacity 220ms ease, transform 300ms cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}

.robot-reply::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -4px;
  width: 7px;
  height: 7px;
  border-right: 1px solid rgb(255 255 255 / 16%);
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  background: rgb(17 18 21 / 78%);
  transform: rotate(45deg);
}

.robot-reply.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.robot-head-rig {
  position: absolute;
  inset: 0;
  animation: robot-rig-in 800ms cubic-bezier(.2,.8,.2,1) both;
}

.robot-head-rig__body,
.robot-head-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.robot-head-rig__body {
  z-index: 1;
}

.robot-head-frame {
  z-index: 2;
  opacity: 0;
  will-change: opacity;
}

.robot-head-frame.is-active {
  opacity: 1;
}

.robot-sprite {
  position: absolute;
  z-index: 6;
  inset: -2% 0 -2% 0;
  animation: settle-in 800ms cubic-bezier(.2,.8,.2,1) both;
}

.robot-body {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate3d(var(--body-x, 0), var(--body-y, 0), 0) rotate(var(--body-rotate, 0deg));
  transform-origin: 50% 80%;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
}

.robot-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translate3d(var(--sprite-x, 0), var(--sprite-y, 0), 0) rotate(var(--sprite-rotate, 0deg));
  transform-origin: 50% 46%;
  transition: opacity 25ms linear, transform 100ms linear;
  will-change: opacity, transform;
}

.robot-frame.is-active:not(.robot-frame--blink) {
  opacity: 1;
}

.robot-eyes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translate3d(calc(var(--sprite-x, 0px) + var(--gaze-x, 0px)), calc(var(--sprite-y, 0px) + var(--gaze-y, 0px)), 0) rotate(var(--sprite-rotate, 0deg));
  transform-origin: 50% 46%;
  transition: opacity 25ms linear, transform 80ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

.robot-eyes.is-active {
  opacity: 1;
}

.robot-sprite.is-blinking .robot-frame:not(.robot-frame--blink) {
  opacity: 0 !important;
}

.robot-sprite.is-blinking .robot-eyes {
  opacity: 0 !important;
}

.robot-sprite.is-blinking[data-current-view="far-left"] .robot-frame--blink[data-view="far-left"],
.robot-sprite.is-blinking[data-current-view="mid-left"] .robot-frame--blink[data-view="mid-left"],
.robot-sprite.is-blinking[data-current-view="front"] .robot-frame--blink[data-view="front"],
.robot-sprite.is-blinking[data-current-view="mid-right"] .robot-frame--blink[data-view="mid-right"],
.robot-sprite.is-blinking[data-current-view="far-right"] .robot-frame--blink[data-view="far-right"] {
  opacity: 1;
}

.robot-canvas {
  position: absolute;
  z-index: 6;
  inset: -12% -4% -3% -4%;
  width: 108%;
  height: 115%;
  opacity: 0;
  transition: opacity 500ms ease;
}

.hero__visual.is-3d-ready .robot-canvas {
  opacity: 1;
}

.hero__visual.is-3d-ready .robot-stack,
.hero__visual.is-3d-ready > .robot-detail {
  opacity: 0 !important;
  animation: none;
}

.model-status {
  position: absolute;
  z-index: 7;
  right: 11%;
  bottom: 12%;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: opacity 250ms ease;
}

.hero__visual.is-3d-ready .model-status,
.hero__visual.is-3d-error .model-status {
  opacity: 0;
}

.robot-stack,
.robot-detail {
  transition: opacity 350ms ease;
}

.robot-stack {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  animation: settle-in 900ms cubic-bezier(.2,.8,.2,1) both, float 5s ease-in-out 900ms infinite;
}

.robot-motion {
  position: absolute;
  inset: 0;
  transform: translate3d(var(--robot-x, 0), var(--robot-y, 0), 0) rotate(var(--robot-rotate, 0deg));
  transform-origin: 53% 72%;
  transition: transform 80ms linear;
  will-change: transform;
}

.robot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.robot-face {
  position: absolute;
  z-index: 2;
  top: 27.55%;
  left: 39%;
  width: 20.5%;
  aspect-ratio: 152 / 122.721;
  pointer-events: none;
}

.robot-face > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.robot-eye {
  position: absolute;
  top: 47%;
  width: 13%;
  height: 25%;
  border-radius: 48%;
  background: #f2ccff;
  box-shadow: 0 0 5px #d98cff, 0 0 12px rgb(199 103 255 / 80%);
  margin: var(--eye-y, 0) 0 0 var(--eye-x, 0);
  transform: scaleY(1);
  transform-origin: center;
  transition: margin 100ms linear;
}

.robot-eye::after {
  content: "";
  position: absolute;
  inset: 18% 26%;
  border-radius: inherit;
  background: #fff;
  opacity: .72;
}

.robot-eye--left {
  left: 32%;
  rotate: -12deg;
}

.robot-eye--right {
  left: 64%;
  rotate: -5deg;
}

.robot-stack.is-blinking .robot-eye {
  animation: robot-blink 220ms cubic-bezier(.4,0,.2,1);
}

.robot-detail {
  position: absolute;
  top: 136px;
  left: 39%;
  width: 20.3%;
}

.scroll-cue {
  display: none;
}

.work {
  position: relative;
  z-index: 1;
  min-height: 668px;
  padding: 0 var(--page-padding) 80px;
  background: linear-gradient(180deg, rgb(8 9 10 / 27%) 0%, rgb(125 129 135 / 27%) 100%);
}

.work-showcase {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  width: 100%;
  min-height: 596px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgb(16 17 18 / 72%);
  box-shadow: 0 28px 70px rgb(0 0 0 / 18%);
}

.work-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 38px 24px 22px;
}

.work-intro > p:first-child {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.work-intro h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.work-intro > p:nth-child(3) {
  margin: 28px 0 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.work-tags span,
.activity-list em {
  padding: 3px 7px;
  border: 1px solid #292929;
  border-radius: 4px;
  color: var(--muted);
  background: #191b1c;
  font-size: 10px;
  font-style: normal;
}

.work-tabs {
  --active-tab-index: 0;
  position: relative;
  display: grid;
  gap: 4px;
  margin-top: 46px;
}

.work-tabs::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  border: 1px solid rgb(255 255 255 / 3%);
  border-radius: 8px;
  background: #161616;
  transform: translateY(calc(var(--active-tab-index) * 40px));
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.work-tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  transition: color 240ms ease, transform 300ms cubic-bezier(.22, 1, .36, 1);
}

.work-tab img {
  width: 14px;
  height: 14px;
  opacity: .8;
}

.work-tab.is-active {
  color: #fff;
  background: transparent;
}

.work-tab:hover:not(.is-active) {
  color: #d7d7d7;
  transform: translateX(3px);
}

.work-github {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 47px;
  margin-top: auto;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
}

.work-github::before {
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, #27292a 4%, #56595b 48%, #343637 78%, #242526 100%);
  content: "";
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.work-github img {
  width: 15px;
  height: 15px;
}

.work-panel {
  min-width: 0;
  margin: 12px 12px 12px 0;
  overflow: hidden;
  border: 1px solid #1d1e1e;
  border-radius: 12px;
  background: linear-gradient(117deg, #191b1c 1.35%, #101112 33.13%);
}

.work-panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.work-panel__header span:last-child {
  color: var(--muted);
  letter-spacing: 2px;
}

.work-panel__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  min-height: 516px;
}

.work-panel__body.is-switching .work-panel__content,
.work-panel__body.is-switching .activity-panel {
  animation: work-tab-content-in 460ms cubic-bezier(.22, 1, .36, 1) both;
}

.work-panel__header.is-switching span:first-child {
  animation: work-tab-label-in 360ms cubic-bezier(.22, 1, .36, 1) both;
}

.work-panel__content {
  min-width: 0;
  padding: 30px 69px 28px 28px;
}

.work-panel__body[data-active-work="design"] {
  grid-template-columns: minmax(0, 1fr);
}

.work-panel__body[data-active-work="design"] .work-panel__content {
  padding: 39px 0 0 39px;
}

.work-panel__body[data-active-work="design"] .workflow-window,
.work-panel__body[data-active-work="design"] .activity-panel {
  display: none;
}

.work-panel__body[data-active-work="build"] {
  grid-template-columns: minmax(0, 1fr);
}

.work-panel__body[data-active-work="build"] .work-panel__content {
  padding: 26px 39px 0;
}

.work-panel__body[data-active-work="build"] .workflow-window,
.work-panel__body[data-active-work="build"] .activity-panel {
  display: none;
}

.work-panel__body[data-active-work="demo"] {
  grid-template-columns: minmax(0, 1fr);
}

.work-panel__body[data-active-work="demo"] .work-panel__content {
  padding: 29px 30px 0;
}

.work-panel__body[data-active-work="demo"] .workflow-window,
.work-panel__body[data-active-work="demo"] .activity-panel {
  display: none;
}

.demo-view > h3 {
  width: 604px;
  max-width: 100%;
  font-size: 20px;
  font-weight: 300;
}

.demo-video-shell {
  position: relative;
  width: 100%;
  height: 408px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #191a1b;
  border-radius: 12px;
  background: #08090a;
}

.demo-video-bar {
  height: 37px;
  border-bottom: 1px solid #191a1b;
  background: rgb(22 24 25 / 60%);
}

.demo-video-placeholder {
  position: absolute;
  inset: 37px 0 0;
  background: #08090a;
}

.build-architecture-view {
  width: 100%;
}

.build-architecture-svg {
  display: block;
  width: 100%;
  aspect-ratio: 920 / 434;
  border: 0;
}

.build-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
  height: 433px;
}

.build-lane {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  padding: 25px 20px 21px;
  border: 1px solid rgb(64 65 65 / 30%);
  border-radius: 12px;
}

.build-lane--logic,
.build-lane--outputs {
  justify-content: center;
}

.build-lane--states {
  gap: 21px;
}

.build-box {
  position: relative;
  min-width: 0;
  border: .5px solid #878888;
  border-radius: 12px;
  color: #fff;
  background: rgb(18 19 20 / 28%);
}

.build-box h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.build-box p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.build-source-box {
  flex: 1;
  padding: 12px 12px 10px;
}

.build-source-box:first-child { flex-basis: 161px; }
.build-source-box:last-child { flex-basis: 206px; }

.build-source-item {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 37px;
  margin-top: 10px;
  padding: 0 10px;
  border: 1px solid rgb(64 65 65 / 20%);
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
}

.build-source-item i {
  color: #fff;
  font-style: normal;
}

.build-source-box small {
  display: block;
  margin-top: 7px;
  color: rgb(137 142 152 / 60%);
  font-size: 10px;
}

.build-logic-box,
.build-output-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 387px;
  padding: 26px 14px;
  text-align: center;
}

.build-flow-section,
.build-output-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 100%;
}

.build-flow-section img,
.build-output-section img {
  display: block;
  width: 24px;
  height: 24px;
}

.build-risk-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  font-size: 18px;
}

.build-down-arrow {
  color: #676b71;
  font-size: 28px;
  font-weight: 200;
}

.build-state-box {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 0;
  text-align: center;
}

.build-node-out::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(100% - 1px);
  width: 42px;
  height: 1px;
  background: #404345;
}

.build-node-out::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: calc(50% - 6px);
  right: -7px;
  width: 12px;
  height: 12px;
  border: 1px solid #55595c;
  border-radius: 50%;
  background: #101112;
}

.build-node-in > h3::before,
.build-node-in > .build-output-section:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -27px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #62666a;
  border-right: 1px solid #62666a;
  transform: translateY(-50%) rotate(45deg);
}

.build-node-out--danger::after {
  background: repeating-linear-gradient(90deg, #7f2222 0 3px, transparent 3px 5px);
}

.build-node-out--danger::before {
  border-color: #8c2020;
}

.build-panel-tags {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 7px;
  margin-top: 1px;
}

.build-panel-tags span {
  padding: 3px 7px;
  border: 1px solid #292929;
  border-radius: 4px;
  color: var(--muted);
  background: #191b1c;
  font-size: 9px;
  line-height: 1;
  white-space: nowrap;
}

.build-architecture-caption {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.design-layout {
  position: relative;
  height: 437px;
}

.design-state[data-design-state="0"]::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 74px;
  left: 351px;
  width: 1px;
  height: 132px;
  background: rgb(137 142 152 / 72%);
}

.design-state {
  position: absolute;
  inset: 0;
}

.design-state.is-entering {
  z-index: 2;
  animation: design-state-enter 560ms cubic-bezier(.22, 1, .36, 1) both;
}

.design-state.is-leaving {
  z-index: 1;
  pointer-events: none;
  animation: design-state-leave 420ms cubic-bezier(.4, 0, .2, 1) both;
}

.design-layout__panel {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 352px;
  height: 437px;
  border: .5px solid #878888;
  border-radius: 12px;
  object-fit: cover;
}

.design-layout__panel--fixed {
  z-index: 4;
}

.design-note {
  position: absolute;
  left: 420px;
  width: 474px;
}

.design-note--overview { top: 64px; }
.design-note--quiet { top: 199px; }

.design-note__line {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: calc(100% + 10px);
  width: 58px;
  height: 1px;
  background: rgb(137 142 152 / 72%);
}

.design-note__line::before,
.design-note__line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #898e98;
  transform: translateY(-50%);
}

.design-note__line::before {
  left: -2px;
}

.design-note__line::after {
  right: -2px;
}

.design-note--quiet .design-note__line {
  top: 7px;
}

.design-note h3 {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.design-note > p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
}

.design-session-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 474px;
  margin-top: 18px;
  padding: 14px;
  border: .7px solid #333;
  border-radius: 11px;
  background: #17181b;
}

.design-session-card__icon {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 19px;
  place-items: center;
  border: 1px solid #d9d9d9;
  color: #d9d9d9;
  font: 8px/1 ui-monospace, monospace;
}

.design-session-card__copy {
  display: grid;
  flex: 1;
  gap: 7px;
  min-width: 0;
}

.design-session-card__copy > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.design-session-card strong {
  font-size: 13px;
  font-weight: 500;
}

.design-session-card em {
  margin-left: 7px;
  padding: 2px 5px;
  border-radius: 4px;
  color: var(--muted);
  background: #242323;
  font-size: 9px;
  font-style: normal;
}

.design-session-card b {
  color: #459277;
  font-size: 11px;
  font-weight: 400;
}

.design-session-card small {
  color: #666;
  font-size: 11px;
}

.design-state-copy {
  position: absolute;
  top: 198px;
  left: 420px;
  width: 474px;
}

.design-state-copy::before {
  content: "";
  position: absolute;
  top: 9px;
  right: calc(100% + 10px);
  width: 58px;
  height: 1px;
  background: rgb(137 142 152 / 72%);
}

.design-state-copy::after {
  content: "";
  position: absolute;
  top: 7px;
  right: calc(100% + 8px);
  width: 62px;
  height: 5px;
  background:
    radial-gradient(circle at 2px 50%, #898e98 0 2px, transparent 2.5px),
    radial-gradient(circle at calc(100% - 2px) 50%, #898e98 0 2px, transparent 2.5px);
  pointer-events: none;
}

.design-state-copy h3,
.design-config-copy h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.design-state-copy--amber > h3 {
  color: #b78140;
}

.design-action-card {
  position: relative;
  margin-top: 14px;
  padding: 14px 16px;
  border: .72px solid #b78140;
  border-radius: 11px;
  background: #17181b;
  box-shadow: 0 18px 40px rgb(0 0 0 / 20%);
}

.design-state-copy--red .design-action-card {
  border-color: #b74040;
}

.design-action-card__head,
.design-action-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.design-action-card__head strong {
  font-size: 13px;
  font-weight: 500;
}

.design-action-card__head em {
  color: #c9912f;
  font-size: 10px;
  font-style: normal;
}

.design-state-copy--red .design-action-card__head em {
  color: #c94a4a;
}

.design-action-card > p {
  margin: 10px 0 8px;
  color: #d4d4d4;
  font-size: 12px;
}

.design-action-card > small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.design-action-card__actions {
  justify-content: flex-end;
  margin-top: -22px;
  font-size: 10px;
}

.design-action-card__actions b {
  padding: 6px 9px;
  border: 1px solid #755a27;
  border-radius: 7px;
  color: #d6a84d;
  font-weight: 400;
}

.design-state-copy--red .design-action-card__actions b {
  border-color: #6c3030;
  color: #d25555;
}

.design-action-card--precise {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
}

.design-action-card--precise .design-action-card__head {
  width: 100%;
}

.design-action-card__title,
.design-action-card__status {
  display: flex;
  align-items: center;
}

.design-action-card__title {
  gap: 7px;
}

.design-action-card__title > img {
  display: block;
  width: 17px;
  height: 17px;
}

.design-action-card__title strong {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.design-action-card__title i {
  min-width: 25px;
  padding: 2px 7px;
  border-radius: 18px;
  color: #b78140;
  background: rgb(183 129 64 / 20%);
  font-size: 10px;
  font-style: normal;
  text-align: center;
}

.design-action-card__status {
  gap: 3px;
  color: #b78140;
  font-size: 11.5px;
}

.design-action-card__status img {
  display: block;
  width: 9px;
  height: 9px;
}

.design-action-card__divider {
  display: block;
  width: 100%;
  height: 1px;
  object-fit: fill;
}

.design-action-card__body {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.design-action-card__details {
  display: grid;
  flex: 1;
  gap: 7px;
  min-width: 0;
}

.design-action-card__details > strong {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.design-action-card__details p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #666;
  font-size: 11.5px;
}

.design-action-card__details em {
  padding: 2px 5px;
  border-radius: 4px;
  color: #898e98;
  background: #242323;
  font-size: 9px;
  font-style: normal;
}

.design-action-card__details p span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #b78140;
}

.design-action-card__details p span img {
  width: 9px;
  height: 9px;
}

.design-action-card__buttons {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.design-action-card__buttons button {
  padding: 9px 14px;
  border: 1px solid #333;
  border-radius: 11px;
  color: #fff;
  background: #17181b;
  font-size: 11.5px;
  cursor: default;
}

.design-action-card__buttons button:last-child {
  border-color: #b78140;
  color: #b78140;
  background: rgb(183 129 64 / 15%);
}

.design-state-copy--red > h3,
.design-state-copy--red .design-action-card__status,
.design-state-copy--red .design-action-card__details p span {
  color: #b74040;
}

.design-state-copy--red .design-action-card__title i {
  color: #b74040;
  background: rgb(183 64 64 / 20%);
}

.design-state-copy--red .design-action-card__buttons button:last-child {
  border-color: #b74040;
  color: #b74040;
  background: rgb(183 64 64 / 15%);
}

.design-config-copy {
  position: absolute;
  z-index: 6;
  top: 7px;
  left: 420px;
  width: 295px;
  text-align: center;
}

.design-config-copy > p {
  margin: 6px 0 13px;
  color: var(--muted);
  font-size: 12px;
}

.design-config-panel {
  position: absolute;
  z-index: 5;
  top: 71px;
  left: 420px;
  display: block;
  width: 295px;
  height: 366px;
  border: .5px solid #474849;
  border-radius: 12px;
  object-fit: cover;
}

.design-config-note {
  position: absolute;
  z-index: 6;
  left: 782px;
  width: 150px;
}

.design-config-note--wechat { top: 168px; }
.design-config-note--browser { top: 293px; }

.design-config-note > span {
  position: absolute;
  top: 8px;
  right: 100%;
  width: 67px;
  height: 1px;
  background: rgb(137 142 152 / 72%);
}

.design-config-note > span::before,
.design-config-note > span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #898e98;
  transform: translateY(-50%);
}

.design-config-note > span::before { left: -2px; }
.design-config-note > span::after { right: -2px; }

.design-state[data-design-state="3"]::before {
  content: "";
  position: absolute;
  z-index: 7;
  top: 424px;
  left: 352px;
  width: 58px;
  height: 1px;
  background: rgb(137 142 152 / 72%);
}

.design-state[data-design-state="3"]::after {
  content: "";
  position: absolute;
  z-index: 8;
  top: 422px;
  left: 350px;
  width: 62px;
  height: 5px;
  background:
    radial-gradient(circle at 2px 50%, #898e98 0 2px, transparent 2.2px),
    radial-gradient(circle at calc(100% - 2px) 50%, #898e98 0 2px, transparent 2.2px);
  pointer-events: none;
}

.design-config-note h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.design-config-note p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.design-state-controls {
  --active-index: 0;
  position: absolute;
  z-index: 8;
  right: 25px;
  bottom: -17px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px;
  border: 1px solid #292a2b;
  border-radius: 999px;
  background: rgb(13 14 15 / 88%);
  backdrop-filter: blur(12px);
}

.design-state-controls::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 7px;
  left: 7px;
  width: 48px;
  height: 24px;
  border-radius: 999px;
  background: #292b2d;
  box-shadow: 0 5px 16px rgb(0 0 0 / 18%);
  transform: translateX(calc(var(--active-index) * 55px));
  transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.design-state-controls button {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #686d75;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  transition: color 300ms ease;
}

.design-state-controls button:focus {
  outline: none;
}

.design-state-controls button:focus-visible {
  box-shadow: inset 0 0 0 1px #777b82;
}

.design-state-controls button.is-active {
  color: #fff;
  background: transparent;
}

.design-state-controls button.is-active::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 5px;
  left: 8px;
  height: 1px;
  background: #898e98;
  transform: scaleX(0);
  transform-origin: left center;
  animation: design-state-progress 4800ms linear forwards;
}

.design-layout.is-paused .design-state-controls button.is-active::after {
  animation-play-state: paused;
}

.work-view h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.015em;
}

.work-view > p {
  margin: 12px 0 30px;
  color: var(--muted);
  font-size: 12px;
}

.workflow-window {
  position: relative;
  z-index: 2;
  height: 337px;
  overflow: visible;
  border: 1px solid #191a1b;
  border-radius: 12px;
  background: #08090a;
}

.workflow-window__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 37px;
  padding: 0 20px;
  border-bottom: 1px solid #191a1b;
  color: #fff;
  background: rgb(22 24 25 / 60%);
  font-size: 12px;
}

.workflow-window__bar span:last-child {
  color: var(--muted);
  font-size: 10px;
}

.workflow-console {
  position: relative;
  height: 300px;
  padding: 24px 20px;
}

.workflow-log {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.workflow-log p {
  margin: 0;
}

.terminal-wait {
  display: flex;
  align-items: center;
  min-height: 20px;
}

.terminal-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  margin-left: 5px;
  background: #898e98;
  animation: terminal-cursor-blink 1800ms step-end infinite;
}

.workflow-log strong {
  display: block;
  margin: 50px 0 14px;
  color: #fff;
  font-weight: 400;
}

.confirm-stack {
  position: absolute;
  top: 26px;
  right: -3px;
  width: 310px;
  height: 300px;
}

.confirm-card {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  gap: 7px;
  width: 200px;
  min-height: 94px;
  padding: 14px;
  border: 1px solid #292929;
  border-radius: 12px;
  color: #7e7e7e;
  background: #101213;
  box-shadow: 0 12px 26px rgb(0 0 0 / 30%);
  font-size: 12px;
  opacity: 0;
  transform: translateY(12px) scale(.97);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(.2,.8,.2,1);
}

.confirm-card:nth-child(2) { top: 69px; left: 27px; }
.confirm-card:nth-child(3) { top: 138px; left: 54px; }
.confirm-card:nth-child(4) { top: 207px; left: 81px; }

.confirm-card:last-child {
  z-index: 4;
  box-shadow: 0 20px 38px rgb(0 0 0 / 46%);
}

.confirm-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.confirm-card strong {
  color: #c2c2c2;
  font-weight: 500;
}

.confirm-card small {
  justify-self: end;
  color: #fff;
  font-size: 12px;
}

.activity-panel {
  padding: 30px;
  border-left: 1px solid var(--line);
}

.activity-panel h3 {
  margin: 0 0 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 400;
}

.activity-list {
  display: grid;
  gap: 30px;
}

.activity-list > div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 28px;
  color: var(--muted);
  font-size: 12px;
}

.activity-list time {
  position: relative;
}

.activity-list time::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 16px;
  width: 1px;
  height: 40px;
  background: linear-gradient(
    180deg,
    rgb(137 142 152 / 0%) 0%,
    #898e98 46.15%,
    rgb(137 142 152 / 0%) 100%
  );
}

.activity-list p {
  display: grid;
  justify-items: start;
  gap: 7px;
  margin: 0;
}

.activity-list strong {
  color: #c2c2c2;
  font-weight: 500;
}

.activity-more {
  margin: 30px 0 0;
  color: #c2c2c2;
  font-size: 12px;
}

.built {
  min-height: 240vh;
  padding: 0 var(--page-padding) 110px;
  border-top: 1px solid var(--line);
  background: #08090a;
}

.built__header {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin-bottom: 0;
  padding: 80px 0 44px;
}

.built__header h2,
.built__header p {
  margin: 0;
}

.built__header h2 {
  color: var(--soft);
  font-size: clamp(40px, 3.48vw, 50px);
  font-weight: 300;
  letter-spacing: -.025em;
}

.built__header p {
  color: var(--muted);
  font-size: clamp(16px, 1.39vw, 20px);
  font-weight: 300;
}

.built-projects {
  --sticky-top: 112px;
  --stack-gap: 56px;
  --first-height: min(624px, calc(100vh - var(--sticky-top) - 24px));
  --second-height: var(--first-height);
  --first-top: 0px;
  --second-top: 53px;
  --built-second-y: calc(var(--first-height) + var(--stack-gap) - var(--second-top));
  position: sticky;
  top: var(--sticky-top);
  width: min(1225px, 100%);
  max-width: 1225px;
  height: calc(100vh - var(--sticky-top));
  overflow: visible;
}

.built-project {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1055px);
  width: 100%;
}

.built-project--first {
  position: absolute;
  top: var(--first-top);
  left: 0;
  width: 100%;
  z-index: 1;
  transition: top 320ms cubic-bezier(.22, .8, .3, 1);
}

.built-project--second {
  position: absolute;
  top: var(--second-top);
  left: 0;
  width: 100%;
  z-index: 2;
  margin-top: 0;
  transform: translate3d(0, var(--built-second-y), 0);
  will-change: transform;
}

.built-project--second::before {
  position: absolute;
  z-index: 0;
  top: -79px;
  left: 0;
  width: 100%;
  height: 115px;
  background: linear-gradient(
    to bottom,
    rgba(8, 9, 10, 0) 0%,
    rgba(8, 9, 10, .18) 20%,
    rgba(8, 9, 10, .72) 58%,
    #08090a 88%,
    #08090a 100%
  );
  content: "";
  pointer-events: none;
}

.built-project--second > * {
  position: relative;
  z-index: 1;
}

.built-project--second .built-project__content {
  min-height: 0;
  height: var(--second-height);
}

.built-project__index {
  display: flex;
  height: 74px;
  align-items: center;
  justify-content: center;
  border: 1px solid #454545;
  border-right: 0;
  border-radius: 17px 0 0 17px;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
}

.built-project__content {
  position: relative;
  display: grid;
  grid-template-columns: 453px 1fr;
  min-width: 0;
  height: var(--first-height);
  min-height: 0;
  overflow: hidden;
  border: 1px solid #454545;
  border-radius: 0 17px 17px 17px;
  background: #08090a;
}

.built-project__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(96px, 16vh, 158px) 45px 0 59px;
}

.built-project__details h3,
.built-project__details p {
  margin: 0;
}

.built-project__details h3 {
  margin-top: 24px;
  color: #fff;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.built-project__url:hover {
  color: #fff;
}

.built-project__url {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
  transition: color 180ms ease;
}

.built-project__url img {
  width: 14px;
  height: 14px;
  opacity: .75;
}

.built-project__details p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.built-project__tags {
  display: flex;
  gap: 11px;
  margin-top: 16px;
}

.built-project__tags span {
  padding: 3px 7px;
  border: 1px solid #292929;
  border-radius: 4px;
  background: #191b1c;
  color: var(--muted);
  font-size: 10px;
}

.built-project__cta {
  position: relative;
  display: grid;
  width: 219px;
  height: 47px;
  margin-top: 60px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  transition: color 200ms ease, transform 200ms ease;
}

.built-project__cta::before,
.built-project__github::before {
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, #27292a 4%, #56595b 48%, #343637 78%, #242526 100%);
  content: "";
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 200ms ease;
}

.built-project__cta:hover,
.built-project__github:hover {
  color: #fff;
  transform: translateY(-2px);
}

.built-project__cta:hover::before,
.built-project__github:hover::before { opacity: 1.35; }

.built-project__visual {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  perspective: 900px;
}

.built-project__orbit {
  width: 580px;
  height: 580px;
  opacity: .92;
  animation: fourth-orbit 92s linear infinite;
}

.built-project__card-shell {
  position: absolute;
  width: 190px;
  height: 332px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .42));
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .4s ease;
  --card-x: 50%;
  --card-y: 50%;
}

.built-project__card-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 220px at var(--card-x) var(--card-y), rgba(255,255,255,.15), transparent 78%);
  opacity: .35;
  pointer-events: none;
  transition: opacity .4s ease;
}

.built-project__card-shell::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -55%;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.05) 44%, rgba(255,255,255,.16) 50%, rgba(255,255,255,.05) 56%, transparent 62%);
  transform: translate(var(--shine-x, 0), var(--shine-y, 0));
  opacity: .65;
  pointer-events: none;
}

.built-project__card-shell:hover {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, .58));
}

.built-project__card-shell:hover::before,
.built-project__card-shell:hover::after { opacity: 1; }

.built-project__card {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.built-project__content--gongzei {
  display: block;
  padding: 0;
}

.built-project__gongzei-copy {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 443px;
}

.built-project__gongzei-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.built-project__gongzei-title h3 {
  margin: 0;
  color: #fff;
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.built-project__github {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  transition: color 200ms ease, transform 200ms ease;
}

.built-project__github img {
  width: 13px;
  height: 13px;
  opacity: .72;
}

.built-project__github:hover {
  color: #fff;
}

.built-project__gongzei-title > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.built-project__gongzei-copy > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.built-project__github {
  position: absolute;
  top: 52px;
  right: 50px;
  width: 218px;
  height: 47px;
  justify-content: center;
  border-radius: 12px;
}

.built-project__github > span,
.built-project__github > img {
  position: relative;
  z-index: 1;
}

.built-project__previews {
  display: flex;
  gap: 46px;
  margin-top: 38px;
}

.gongzei-showcase {
  position: absolute;
  top: 193px;
  left: 50px;
  width: 508px;
  height: 381px;
}

.gongzei-screens {
  position: relative;
  width: 100%;
  height: 100%;
}

.gongzei-screen {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.gongzei-screen > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.gongzei-screen--today {
  position: absolute;
  top: 1px;
  left: 0;
  width: 250px;
  height: 380px;
}

.gongzei-screen--summary {
  position: absolute;
  top: 0;
  left: 266px;
  width: 242px;
  height: 217px;
}

.gongzei-screen--report {
  position: absolute;
  top: 233px;
  left: 266px;
  width: 242px;
  height: 148px;
}

.gongzei-mascot-video {
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 10px;
  display: block;
  width: 78px;
  height: 78px;
  border-radius: 0;
  object-fit: cover;
  pointer-events: none;
}

.gongzei-feature-rail {
  position: absolute;
  /* This rail lives inside .gongzei-showcase: offset it from that preview block,
     not from the card itself. The final card coordinates are x: 670 / y: 206. */
  top: 13px;
  left: 620px;
  display: grid;
  width: 269px;
  grid-template-rows: repeat(3, 47px);
  gap: 53px;
  padding: 0;
}

.gongzei-feature-rail__line {
  position: absolute;
  top: 0;
  left: -56px;
  width: 1px;
  height: 368px;
  background: linear-gradient(to bottom, rgb(29 30 30 / 0) 0%, #808485 52%, rgb(29 30 30 / 0) 100%);
}

.gongzei-feature {
  position: relative;
  display: grid;
  min-height: 47px;
  padding-left: 66px;
  align-items: start;
}

.gongzei-feature__icon {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid #292929;
  border-radius: 15px;
  background: #0d0d0d;
}

.gongzei-feature__icon img {
  display: block;
  max-width: 20px;
  max-height: 20px;
}

.gongzei-feature h4,
.gongzei-feature p {
  margin: 0;
}

.gongzei-feature h4 {
  margin-top: 2px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}

.gongzei-feature p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 20px;
}

.gongzei-feature-rail__note {
  position: absolute;
  top: 317px;
  left: 0;
  width: 306px;
  margin: 0;
  padding: 17px 0 0 18px;
  color: #4f4f4f;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
}

.gongzei-feature-rail__note span {
  position: absolute;
  color: #5c5c5c;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 29px;
  font-weight: 300;
  line-height: 1;
}

.gongzei-feature-rail__note span:first-child { top: 0; left: 0; }
.gongzei-feature-rail__note span:last-child { right: 0; bottom: 0; }

@keyframes gongzei-mascot-float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-5px) rotate(2deg); } }

.built-project__preview {
  width: 235px;
  height: min(318px, calc(var(--second-height) - 210px));
  min-height: 190px;
  border: 1px solid #303234;
  border-radius: 11px;
  background:
    radial-gradient(circle at 50% 16%, rgb(255 255 255 / 3%), transparent 32%),
    linear-gradient(145deg, #111314, #0c0d0e 58%, #111314);
}

@keyframes fourth-orbit {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .built-project__orbit,
  .built-project__card-shell,
  .gongzei-mascot {
    animation: none;
    transition: none;
  }
}

.built-project__pagination {
  position: absolute;
  z-index: 8;
  top: var(--first-top);
  right: -67px;
  display: grid;
  height: var(--first-height);
  align-content: center;
  justify-items: center;
  gap: 39px;
  pointer-events: none;
}

.built-project__pagination span {
  position: relative;
  display: grid;
  width: 27px;
  height: 25px;
  box-sizing: border-box;
  place-items: center;
}

.built-project__pagination span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b3d3f;
  content: "";
  transition: background-color 320ms ease, transform 320ms cubic-bezier(.22, .8, .3, 1);
}

.built-project__pagination span::after {
  position: absolute;
  inset: 0;
  background: url('./assets/built-anchor-active.svg') center / 27px 25px no-repeat;
  content: "";
  opacity: 0;
  transform: scale(.65) rotate(-8deg);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.built-project__pagination .is-active::before {
  background: #fff;
  transform: scale(.86);
}

.built-project__pagination .is-active::after {
  opacity: 1;
  transform: scale(1) rotate(0);
}

@media (prefers-reduced-motion: reduce) {
  .built-project__pagination span::before,
  .built-project__pagination span::after {
    transition: none;
  }
}

.components,
.about,
.contact {
  padding: 140px var(--page-padding);
  border-top: 1px solid var(--line);
}

.components {
  min-height: 1024px;
  overflow: hidden;
  background: #08090a;
}

.lianshan-japan {
  position: relative;
  min-height: 377vh;
  padding-top: 160px;
  background: #060809;
  --lianshan-stage-overlap: 57px;
}

.lianshan-japan__header {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: var(--page-padding);
  text-align: center;
}

.lianshan-japan__header h2,
.lianshan-japan__header p {
  margin: 0;
}

.lianshan-japan__header h2 {
  color: #d8d8da;
  font-size: 58px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.lianshan-japan__header p {
  margin-top: 24px;
  color: #898e98;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.4;
}

.lianshan-japan__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  color: #c8c9cb;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  transition: color 180ms ease, border-color 180ms ease;
}

.lianshan-japan__cta:hover {
  border-color: #fff;
  color: #fff;
}

.lianshan-japan__cta svg {
  flex: 0 0 auto;
}

.lianshan-japan__media {
  position: relative;
  width: min(100%, 1440px);
  margin-inline: auto;
  overflow: hidden;
  pointer-events: none;
}

.lianshan-japan__media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    #060809 0%,
    rgb(6 8 9 / 78%) 1.5%,
    rgb(6 8 9 / 0%) 6%,
    rgb(6 8 9 / 0%) 94%,
    rgb(6 8 9 / 78%) 98.5%,
    #060809 100%
  );
  content: "";
  pointer-events: none;
}

.lianshan-japan__media video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lianshan-japan__stage {
  position: sticky;
  z-index: 1;
  top: min(72px, calc(100dvh - min(56.25vw, 810px)));
  width: 100%;
  margin-top: calc(-1 * var(--lianshan-stage-overlap));
  overflow: visible;
  isolation: isolate;
}

.lianshan-japan__stage::before {
  position: absolute;
  z-index: 2;
  top: -72px;
  left: 0;
  width: 100%;
  height: 144px;
  background:
    linear-gradient(180deg, #060809 0%, rgb(6 8 9 / 94%) 42%, rgb(6 8 9 / 42%) 72%, rgb(6 8 9 / 0%) 100%),
    radial-gradient(ellipse 70% 82% at 50% 10%, rgb(31 35 38 / 12%) 0%, rgb(13 16 18 / 6%) 54%, transparent 100%);
  content: "";
  pointer-events: none;
}

.components__header h2,
.components__header p {
  margin: 0;
}

.components__header h2 {
  color: #d8d8d8;
  font-size: 50px;
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 61px;
}

.components__header p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 24px;
}

.components-visual {
  position: relative;
  width: min(1280px, 100%);
  margin-top: 50px;
  margin-bottom: 0;
  min-height: 589px;
}

.component-docs {
  width: min(926px, calc(100% - 354px));
  min-height: 589px;
  overflow: hidden;
  border: 1px solid #303235;
  border-radius: 3px;
  background: #111214;
  box-shadow: 0 18px 52px rgba(0, 0, 0, .32);
}

.component-docs__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 17px;
  border-bottom: 1px solid #292b2e;
  color: #92969c;
  font-size: 11px;
}

.component-docs__brand,
.component-docs__tools,
.component-code__head,
.component-code__switch,
.component-preview__top,
.ui-tabs { display: flex; align-items: center; }

.component-docs__brand { gap: 8px; color: #e4e5e7; font-size: 12px; text-decoration: none; }
.component-docs__mark { display: grid; width: 20px; height: 20px; place-items: center; border: 1px solid #e7e8e9; border-radius: 50%; font-size: 10px; font-weight: 700; }
.component-docs__tools { gap: 18px; }
.component-docs__search { min-width: 124px; padding: 6px 8px; border: 1px solid #2d3033; border-radius: 3px; color: #71757b; }
.component-docs__body { display: grid; grid-template-columns: 182px 1fr; min-height: 536px; }
.component-docs__nav { padding: 25px 14px; border-right: 1px solid #292b2e; }
.component-docs__nav p { margin: 0 0 9px; color: #6e7278; font-size: 9px; letter-spacing: .08em; }
.component-docs__nav p:not(:first-child) { margin-top: 25px; }
.component-docs__nav a, .component-docs__nav button { display: block; width: 100%; padding: 7px 9px; border: 0; border-radius: 3px; color: #a2a5aa; background: transparent; font: inherit; font-size: 11px; text-align: left; text-decoration: none; cursor: pointer; }
.component-docs__nav button.is-active { color: #f3f3f3; background: #242629; }
.component-docs__nav button:hover, .component-docs__nav a:hover { color: #fff; background: #1b1d20; }
.component-docs__content { padding: 28px 34px 34px; }
.component-docs__crumb { color: #787d83; font-size: 10px; }
.component-docs__crumb span { margin: 0 7px; color: #4a4e53; }.component-docs__crumb strong { color: #c8cbce; font-weight: 400; }
.component-docs__content h3 { margin: 20px 0 8px; color: #f0f1f2; font-size: 28px; font-weight: 400; letter-spacing: -.03em; }.component-docs__intro { max-width: 478px; margin: 0; color: #91959a; font-size: 12px; line-height: 1.6; }
.component-preview { margin-top: 25px; border: 1px solid #303235; border-radius: 3px; overflow: hidden; }.component-preview__top { justify-content: space-between; height: 38px; padding: 0 12px; border-bottom: 1px solid #2b2e31; color: #969aa0; font-size: 10px; }.component-preview__top button { border: 0; color: #a9adb3; background: transparent; font: inherit; font-size: 10px; cursor: pointer; }.component-preview__top button:hover { color: #fff; }
.component-preview__canvas { min-height: 177px; padding: 53px 40px; background: radial-gradient(circle at 40% 0, #17191b 0, #121315 64%); }.ui-tabs { gap: 25px; width: max-content; border-bottom: 1px solid #3a3d40; }.ui-tabs button { position: relative; padding: 0 0 10px; border: 0; color: #8e9298; background: transparent; font: inherit; font-size: 12px; cursor: pointer; }.ui-tabs button::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 1px; content: ''; background: transparent; }.ui-tabs button.is-active { color: #f1f2f3; }.ui-tabs button.is-active::after { background: #f1f2f3; }.ui-tabs__content { margin: 18px 0 0; color: #a0a4a9; font-size: 11px; }
.component-docs__usage { margin-top: 24px; }.component-docs__usage h4 { margin: 0 0 8px; color: #e7e8e9; font-size: 13px; font-weight: 500; }.component-docs__usage p { margin: 0; color: #858a90; font-size: 11px; line-height: 1.65; }
.demo-button { display: inline-flex; gap: 28px; align-items: center; padding: 10px 13px; border: 1px solid #e3e4e5; border-radius: 3px; color: #0d0e0f; background: #e7e8e9; font: 11px inherit; cursor: pointer; transition: transform .18s ease, background .18s ease; }.demo-button:hover { background: #fff; transform: translateY(-1px); }.demo-button:active { transform: translateY(1px); }.demo-input { display: grid; width: min(260px, 100%); gap: 8px; color: #cacdd0; font-size: 11px; }.demo-input input { padding: 10px 11px; border: 1px solid #42454a; border-radius: 3px; outline: 0; color: #eef0f1; background: #181a1c; font: 11px inherit; }.demo-input input:focus { border-color: #d8dadd; box-shadow: 0 0 0 2px rgba(220, 222, 224, .13); }.demo-dialog { display: grid; width: 250px; gap: 10px; margin-top: 17px; padding: 16px; border: 1px solid #46494e; border-radius: 4px; background: #1b1d20; color: #dfe1e3; font-size: 11px; }.demo-dialog span { color: #989da3; }.demo-dialog div { display: flex; justify-content: flex-end; gap: 8px; }.demo-dialog button { padding: 6px 9px; border: 1px solid #44474c; border-radius: 3px; color: #c6c9cc; background: #25272a; font: inherit; font-size: 10px; cursor: pointer; }.demo-dialog button:last-child { color: #111; border-color: #e1e2e3; background: #e1e2e3; }

.component-code { position: absolute; z-index: 2; top: 14px; right: 0; width: min(373px, 32%); min-height: 575px; overflow: hidden; border: 1px solid #3a3c40; border-radius: 3px; background: #17181a; box-shadow: 0 24px 60px rgba(0, 0, 0, .45); }.component-code__head { justify-content: space-between; height: 51px; padding: 0 14px; border-bottom: 1px solid #303236; }.component-code__switch { gap: 16px; }.component-code__switch button { padding: 0; border: 0; color: #84898f; background: transparent; font: inherit; font-size: 11px; cursor: pointer; }.component-code__switch button.is-active { color: #f1f1f2; }.component-code__copy { padding: 5px 9px; border: 1px solid #414449; border-radius: 3px; color: #c7c9cb; background: #202225; font: inherit; font-size: 10px; cursor: pointer; }.component-code__copy:hover { border-color: #6c7076; color: #fff; }.component-code__filename { padding: 12px 17px; border-bottom: 1px solid #2e3033; color: #858a90; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }.component-code__pre { margin: 0; padding: 18px 17px; overflow: auto; color: #d8dadc; font: 10px/1.75 ui-monospace, SFMono-Regular, Menlo, monospace; white-space: pre; }.code-keyword { color: #c998e6; }.code-string { color: #d9bb7c; }.code-tag { color: #81c2d6; }.code-function { color: #84cda8; }

/* Components — Figma 2514:32567 */
.components {
  min-height: 930px;
  /* Built keeps 110px of exit space; 110px + 50px = 160px visually. */
  padding-top: 50px;
  border-top: 0;
  background: #08090a;
}

.components-visual {
  --component-selected-bg: rgb(27 27 27 / 72%);
  width: min(1280px, 100%);
  height: 589px;
  min-height: 589px;
}

.component-docs {
  position: relative;
  z-index: 2;
  /* Keep the Figma spacing fixed: card edge → 16px → line-number column. */
  width: calc(70.859375% + 19px);
  height: 589px;
  min-height: 589px;
  border: 1px solid #454545;
  border-radius: 17px;
  background: linear-gradient(138deg, #1c1d1e -18.32%, #08090a 58.9%);
  box-shadow: none;
}

.component-docs__bar {
  justify-content: flex-start;
  height: 51px;
  padding: 0 17px;
  color: #898e98;
  border-color: #292a2b;
  font-size: 12px;
  letter-spacing: 2.04px;
}

.component-docs__book {
  display: block;
  flex: 0 0 13px;
  width: 13px;
  height: 15px;
  margin-right: 9px;
}

.component-docs__body {
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 538px;
}

.component-docs__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 538px;
  padding: 18px;
  border-color: #292a2b;
}

.component-docs__search {
  display: flex;
  align-items: center;
  width: 174px;
  min-width: 0;
  flex: 0 0 auto;
  margin-bottom: 20px;
  gap: 6px;
  padding: 10px 0 10px 10px;
  border: 1px solid #454545;
  border-radius: 8px;
  color: #4f4f4f;
  background: transparent;
}

.component-docs__search-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.component-docs__search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: #c6c8cb;
  background: transparent;
  font: 12px/15px Inter, sans-serif;
}

.component-docs__search input::placeholder { color: #4f4f4f; opacity: 1; }
.component-docs__search:focus-within { border-color: #5f6266; }
.component-docs__nav-list {
  --active-nav-y: 23px;
  --active-nav-height: 39px;
  position: relative;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
}
.component-docs__nav-list::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--active-nav-height);
  border-radius: 8px;
  background: var(--component-selected-bg);
  content: '';
  transform: translateY(var(--active-nav-y));
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1), height 420ms cubic-bezier(.22, 1, .36, 1);
}
.component-docs__nav-list p { margin: 0 0 8px; color: #4f4f4f; font-size: 12px; line-height: 15px; letter-spacing: 0; }
.component-docs__nav-list p:not(:first-child) { margin-top: 13px; }
.component-docs__nav-list button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 41px;
  min-height: 41px;
  padding: 0 11px;
  border: 0;
  border-radius: 8px;
  color: #898e98;
  background: transparent;
  font: 300 14px/17px Inter, sans-serif;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}
.component-docs__nav-list button.is-active {
  height: 39px;
  min-height: 39px;
  margin: 1px 0;
  color: #fff;
  opacity: 1;
}
.component-docs__nav-list button:hover {
  color: #c5c7ca;
}

.component-docs__nav-list button:focus { outline: none; }
.component-docs__nav-list button:focus-visible { box-shadow: inset 0 0 0 1px #454545; }

.component-docs__nav-list button.is-active:hover {
  color: #fff;
}
.component-docs__nav .component-docs__all {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: 170px;
  height: 43px;
  margin-top: 21px;
  margin-left: 2px;
  padding: 12px 32px;
  border: 0;
  border-radius: 12px;
  color: #898e98;
  background: #101112;
  font: 400 14px/17px Inter, sans-serif;
  text-align: left;
  text-decoration: none;
}
.component-docs__nav .component-docs__all::before {
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  background: linear-gradient(37.3deg, #1d1e1e 52.98%, #808484 100%);
  content: '';
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.component-docs__nav .component-docs__all > span { flex: 0 0 84px; width: 84px; height: 17px; white-space: nowrap; }
.component-docs__nav .component-docs__all svg { flex: 0 0 15px; width: 15px; height: 15px; }
.component-docs__nav .component-docs__all:hover {
  color: #d8dadd;
  background: #101112;
}

.component-docs__content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 538px;
  min-height: 0;
  overflow: hidden;
  padding: 28px 12px 0 18px;
}

.component-docs__content > :not(.component-docs__examples-scroll) {
  margin-right: 6px;
}

.component-docs__examples-scroll {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 0;
  margin-right: 2px;
  padding: 0 6px 66px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #4f5153 transparent;
}

.component-docs__examples-scroll::-webkit-scrollbar { width: 5px; }
.component-docs__examples-scroll::-webkit-scrollbar-track { background: transparent; }
.component-docs__examples-scroll::-webkit-scrollbar-thumb { border-radius: 999px; background: #4f5153; }
.component-docs__examples-scroll::-webkit-scrollbar-thumb:hover { background: #6a6d70; }

.component-docs__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #898e98;
  font: 300 14px/17px Inter, sans-serif;
}

.component-theme-toggle {
  position: relative;
  width: 40px;
  height: 18px;
  padding: 0;
  border: 1px solid #575656;
  border-radius: 15px;
  background: #292929;
}

.component-theme-toggle i {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

.component-docs__content h3 { margin: 21px 0 0; color: #fff; font: 400 14px/17px Inter, sans-serif; letter-spacing: 0; }
.component-docs__intro { max-width: none; margin: 10px 0 0; color: #898e98; font: 300 12px/15px Inter, sans-serif; }
.component-import { display: flex; width: max-content; height: 37px; align-items: center; gap: 4px; margin-top: 10px; padding: 0 12px; border: 0; border-radius: 8px; color: #898e98; background: #1b1b1b; font: 300 12px/15px ui-monospace, SFMono-Regular, Menlo, monospace; }
.component-import b,
.component-import span:nth-of-type(2) {
  color: #f69de1;
  font-weight: 400;
}

.component-import em,
.component-import strong {
  color: #f6bf8d;
  font-style: normal;
  font-weight: 400;
}
.component-docs__rule { height: 1px; margin: 20px 0; background: #212223; }
.component-example { width: 100%; height: 106px; margin: 0 0 20px; padding: 12px; overflow: hidden; border-radius: 8px; background: #151515; }
.component-example--scroll { height: 106px; margin-bottom: 0; }
.component-example h4 { margin: 0; color: #fff; font: 400 14px/17px Inter, sans-serif; }
.component-example p { margin: 10px 0 0; color: #898e98; font: 300 12px/15px Inter, sans-serif; }
.component-example--input {
  display: flex;
  height: auto;
  min-height: 106px;
  flex-direction: column;
  padding: 12px;
  overflow: hidden;
  border: 0;
  background: #151515;
}
.component-example--input-disabled { margin-bottom: 0; }
.input-example__body {
  flex: 0 0 auto;
  padding: 0;
}
.figma-text-field {
  display: flex;
  width: min(232px, 100%);
  height: 40px;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0 12px;
  border: 1px solid #454545;
  border-radius: 8px;
  color: #777c82;
  background: #101112;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.figma-text-field:hover:not(.is-disabled) { border-color: #65686c; }
.figma-text-field:focus-within:not(.is-disabled) {
  border-color: #7d8288;
  background: #101112;
  box-shadow: 0 0 0 2px rgb(125 130 136 / 18%);
}
.figma-text-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #e5ebea;
  background: transparent;
  font: 300 14px/17px Inter, sans-serif;
}
.figma-text-field input::placeholder,
.figma-textarea textarea::placeholder {
  color: #898e98;
  opacity: 1;
}
.figma-text-field__icon {
  display: grid;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  place-items: center;
  color: #777c82;
}
.figma-text-field__icon svg { width: 16px; height: 16px; }
.figma-text-field--large { height: 46px; }
.figma-text-field--small { height: 34px; }
.figma-text-field--large input { font-size: 15px; }
.figma-text-field--small input { font-size: 12px; }
.figma-text-field-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.figma-text-field-stack .figma-text-field { margin-top: 0; }
.figma-textarea {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 16px;
}
.figma-textarea textarea {
  display: block;
  width: 100%;
  min-height: 88px;
  resize: vertical;
  border: 1px solid #454545;
  border-radius: 8px;
  outline: 0;
  padding: 11px 13px 25px;
  color: #e5ebea;
  background: #101112;
  font: 300 14px/18px Inter, sans-serif;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.figma-textarea textarea:hover { border-color: #65686c; }
.figma-textarea textarea:focus {
  border-color: #7d8288;
  background: #101112;
  box-shadow: 0 0 0 2px rgb(125 130 136 / 18%);
}
.figma-textarea__count {
  position: absolute;
  right: 12px;
  bottom: 9px;
  color: #696d73;
  font: 300 11px/14px Inter, sans-serif;
  pointer-events: none;
}
.figma-textarea--autosize textarea {
  min-height: 54px;
  resize: none;
  padding-bottom: 11px;
}
.figma-field-message {
  display: block;
  width: min(232px, 100%);
  margin-top: 16px;
  color: #898e98;
  font: 300 12px/15px Inter, sans-serif;
}
.figma-field-message + .figma-field-message { margin-top: 14px; }
.figma-field-message .figma-text-field { width: 100%; margin-top: 0; }
.figma-field-message > span:last-child { display: block; margin: 6px 0 0 10px; }
.figma-field-message--error { color: #f16363; }
.figma-field-message--error .figma-text-field,
.figma-field-message--error .figma-text-field:focus-within { border-color: #f16363; box-shadow: 0 0 0 2px rgb(241 99 99 / 10%); }
.figma-field-message--warning { color: #d99d31; }
.figma-field-message--warning .figma-text-field,
.figma-field-message--warning .figma-text-field:focus-within { border-color: #d99d31; box-shadow: 0 0 0 2px rgb(217 157 49 / 10%); }
.figma-text-field.is-disabled {
  border-color: #333537;
  color: #505359;
  background: #141516;
  cursor: not-allowed;
}
.figma-text-field.is-disabled input {
  color: #5e6166;
  cursor: not-allowed;
}
.figma-text-field.is-disabled input::placeholder { color: #55585d; }
.component-example--select {
  position: relative;
  z-index: 1;
  display: flex;
  height: auto;
  min-height: 106px;
  flex-direction: column;
  padding: 12px;
  overflow: visible;
  border: 0;
  background: #151515;
}
.component-example--select:has(.figma-select.is-open) { z-index: 8; }
.component-example--select-disabled { margin-bottom: 0; }
.select-example__body {
  flex: 0 0 auto;
  padding: 0;
}
.figma-select {
  position: relative;
  z-index: 1;
  width: min(280px, 100%);
  margin-top: 16px;
  color: #e5ebea;
  font: 300 14px/17px Inter, sans-serif;
}
.figma-select.is-open { z-index: 10; }
.figma-select-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-top: 16px;
}
.figma-select-row .figma-select {
  width: min(220px, calc(50% - 7px));
  margin-top: 0;
}
.figma-select__trigger {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid #454545;
  border-radius: 8px;
  outline: 0;
  color: #e5ebea;
  background: #101112;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.figma-select__trigger:hover:not(:disabled) { border-color: #65686c; }
.figma-select__trigger:focus-visible,
.figma-select.is-open .figma-select__trigger {
  border-color: #7d8288;
  background: #101112;
  box-shadow: 0 0 0 2px rgb(125 130 136 / 18%);
}
.figma-select__trigger > svg {
  flex: 0 0 12px;
  width: 12px;
  height: 8px;
  color: #898e98;
  transition: transform 220ms ease, color 180ms ease;
}
.figma-select.is-open .figma-select__trigger > svg {
  color: #d8dadd;
  transform: rotate(180deg);
}
.figma-select--small .figma-select__trigger {
  min-height: 34px;
  padding-block: 4px;
  font-size: 12px;
}
.figma-select--medium .figma-select__trigger { min-height: 42px; }
.figma-select--disabled .figma-select__trigger {
  border-color: #333537;
  color: #55585d;
  background: #141516;
  box-shadow: none;
  cursor: not-allowed;
}
.figma-select--disabled .figma-select__value.is-placeholder,
.figma-select--disabled .figma-select__trigger > svg { color: #55585d; }
.figma-select__value {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.figma-select__value.is-placeholder { color: #898e98; }
.figma-select__chip {
  display: inline-flex;
  height: 25px;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  border: 1px solid #3b3e40;
  border-radius: 999px;
  color: #d9dcde;
  background: #1b1d1e;
  font-size: 11px;
  line-height: 1;
}
.figma-select__chip i {
  color: #777c82;
  font-size: 13px;
  font-style: normal;
}
.figma-select__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  display: grid;
  width: 100%;
  gap: 2px;
  padding: 5px;
  border: 1px solid #454545;
  border-radius: 10px;
  background: #111214;
  box-shadow: 0 14px 32px rgb(0 0 0 / 42%);
}
.figma-select__menu[hidden] { display: none; }
.figma-select__menu button {
  display: flex;
  width: 100%;
  height: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  outline: 0;
  color: #898e98;
  background: transparent;
  font: 300 12px/15px Inter, sans-serif;
  text-align: left;
  cursor: pointer;
}
.figma-select__menu button:hover:not(:disabled),
.figma-select__menu button:focus-visible {
  color: #e5ebea;
  background: #1b1b1b;
}
.figma-select__menu button.is-selected {
  color: #3cbd86;
  background: rgb(0 143 90 / 8%);
}
.figma-select__menu button span {
  color: #3cbd86;
  opacity: 0;
}
.figma-select__menu button.is-selected span { opacity: 1; }
.figma-select__menu button:disabled {
  color: #4f5256;
  cursor: not-allowed;
}
.component-example--radio {
  height: 106px;
  min-height: 106px;
}
.component-example--radio-disabled {
  height: 158px;
  min-height: 158px;
  margin-bottom: 0;
}
.figma-radio-group {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.figma-radio-group--row {
  display: flex;
  align-items: center;
  gap: 28px;
}
.figma-radio {
  position: relative;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 7px;
  color: #e5ebea;
  font: 400 12px/15px Inter, sans-serif;
  cursor: pointer;
}
.figma-radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.figma-radio__control {
  position: relative;
  display: block;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border: 1.5px solid #6d7074;
  border-radius: 50%;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}
.figma-radio input:checked + .figma-radio__control {
  border-color: #2e7d32;
  background: #2e7d32;
}
.figma-radio input:checked + .figma-radio__control::after {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #08090a;
  content: '';
}
.figma-radio:hover input:not(:disabled) + .figma-radio__control {
  border-color: #3f9a47;
  transform: scale(1.05);
}
.figma-radio input:focus-visible + .figma-radio__control {
  box-shadow: 0 0 0 3px rgb(46 125 50 / 20%);
}
.figma-radio.is-disabled {
  color: #5d6065;
  cursor: not-allowed;
}
.figma-radio input:disabled + .figma-radio__control {
  border-color: #45484c;
  background: transparent;
}
.component-example--capsule-tabs {
  height: 106px;
  min-height: 106px;
}
.component-example--capsule-tabs-last {
  margin-bottom: 0;
}
.figma-capsule-tabs {
  --capsule-active-x: 0px;
  --capsule-active-width: 0px;
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.figma-capsule-tabs::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: var(--capsule-active-width);
  height: 26px;
  border: 1px solid #5f5a53;
  border-radius: 999px;
  background: #5f5a53;
  content: '';
  transform: translateX(var(--capsule-active-x));
  transition: width 320ms cubic-bezier(.22, 1, .36, 1), transform 320ms cubic-bezier(.22, 1, .36, 1);
}
.figma-capsule-tabs button {
  position: relative;
  z-index: 1;
  min-width: 50px;
  height: 26px;
  padding: 0 12px;
  border: 1px solid #5a5650;
  border-radius: 999px;
  outline: 0;
  color: #b9b5ae;
  background: transparent;
  font: 400 12px/15px Inter, sans-serif;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}
.figma-capsule-tabs button:hover:not(:disabled):not(.is-active) {
  border-color: #746f67;
  color: #d2cec7;
  background: rgb(90 86 80 / 18%);
}
.figma-capsule-tabs button.is-active {
  border-color: transparent;
  color: #e2ded7;
  background: transparent;
}
.figma-capsule-tabs button:focus-visible {
  box-shadow: 0 0 0 2px rgb(95 90 83 / 32%);
}
.figma-capsule-tabs button:active:not(:disabled) {
  transform: scale(.97);
}
.figma-capsule-tabs button:disabled {
  border-color: #393936;
  color: #55534f;
  cursor: not-allowed;
}
.figma-capsule-tabs--small button {
  min-width: 44px;
  height: 22px;
  padding: 0 10px;
  font-size: 11px;
}
.figma-capsule-tabs--small::before {
  height: 22px;
}
.component-example--breadcrumb {
  height: 106px;
  min-height: 106px;
}
.component-example--breadcrumb-separators {
  height: 132px;
  min-height: 132px;
}
.figma-breadcrumbs {
  display: flex;
  min-height: 17px;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: #898e98;
  font: 300 13px/17px Inter, sans-serif;
}
.figma-breadcrumbs span { white-space: nowrap; }
.figma-breadcrumbs i {
  color: #686c72;
  font-style: normal;
}
.figma-breadcrumbs-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.figma-breadcrumbs-stack .figma-breadcrumbs { margin-top: 0; }
.figma-breadcrumbs__icon-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.figma-breadcrumbs__icon-item svg {
  display: block;
  flex: 0 0 14px;
}
.component-example--pagination {
  height: 120px;
  min-height: 120px;
}
.component-example--pagination-complete {
  position: relative;
  z-index: 3;
  height: 120px;
  min-height: 120px;
  margin-bottom: 20px;
  overflow: visible;
}
.figma-pagination,
.figma-pagination__pages,
.figma-pagination-row,
.figma-pagination-jump {
  display: flex;
  align-items: center;
}
.figma-pagination {
  gap: 4px;
  width: max-content;
  max-width: 100%;
  min-height: 32px;
  margin-top: 16px;
  color: #898e98;
  font: 300 12px/15px Inter, sans-serif;
  font-variant-numeric: tabular-nums;
}
.figma-pagination__pages {
  gap: 4px;
}
.figma-pagination button,
.figma-pagination__ellipsis {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #898e98;
  background: transparent;
  font: inherit;
  line-height: 1;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}
.figma-pagination button {
  cursor: pointer;
}
.figma-pagination button:hover:not(:disabled):not(.is-active) {
  color: #d5d7d9;
  background: #1d1d1d;
}
.figma-pagination button:active:not(:disabled) {
  transform: translateY(1px);
}
.figma-pagination button:focus {
  outline: none;
}
.figma-pagination button:focus-visible,
.figma-pagination-size__trigger:focus-visible,
.figma-pagination-size__menu button:focus-visible,
.figma-pagination-jump input:focus-visible {
  border-color: #7d8288;
  outline: none;
  box-shadow: 0 0 0 2px rgb(125 130 136 / 18%);
}
.figma-pagination button.is-active {
  border-color: #008f5a;
  color: #3cbd86;
  background: rgb(0 143 90 / 8%);
  font-weight: 500;
}
.figma-pagination .figma-pagination__arrow {
  flex-basis: 26px;
  width: 26px;
  color: #a6a9ad;
  font: 300 23px/1 Inter, sans-serif;
}
.figma-pagination__ellipsis {
  color: #777b80;
  background: #1b1b1b;
  letter-spacing: 1px;
}
.figma-pagination button:disabled {
  color: #494c50;
  cursor: default;
}
.figma-pagination.is-disabled {
  opacity: .38;
}
.figma-pagination.is-disabled button.is-active {
  border-color: #a0a3a6;
  color: #d0d1d2;
  background: transparent;
}
.figma-pagination-row {
  position: relative;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 16px;
}
.figma-pagination-row .figma-pagination {
  margin-top: 0;
}
.figma-pagination-size {
  position: relative;
  z-index: 4;
  flex: 0 0 108px;
  width: 108px;
  height: 32px;
  font: 300 12px/15px Inter, sans-serif;
}
.figma-pagination-size__trigger,
.figma-pagination-jump input {
  height: 32px;
  border: 1px solid #454545;
  border-radius: 8px;
  color: #c9cbce;
  background-color: #111214;
  font: 300 12px/15px Inter, sans-serif;
}
.figma-pagination-size__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 11px;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}
.figma-pagination-size__trigger:hover,
.figma-pagination-size.is-open .figma-pagination-size__trigger {
  border-color: #666a6e;
  color: #fff;
  background: #161719;
}
.figma-pagination-size__trigger span {
  overflow: visible;
  white-space: nowrap;
}
.figma-pagination-size__trigger svg {
  display: block;
  flex: 0 0 12px;
  color: #898e98;
  transition: transform 220ms ease, color 180ms ease;
}
.figma-pagination-size.is-open .figma-pagination-size__trigger svg {
  color: #d7d9db;
  transform: rotate(180deg);
}
.figma-pagination-size__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  display: grid;
  width: 118px;
  gap: 2px;
  padding: 5px;
  border: 1px solid #454545;
  border-radius: 10px;
  background: #111214;
  box-shadow: 0 14px 32px rgb(0 0 0 / 42%);
}
.figma-pagination-size__menu[hidden] {
  display: none;
}
.figma-pagination-size__menu button {
  display: flex;
  width: 100%;
  height: 31px;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #898e98;
  background: transparent;
  font: 300 12px/15px Inter, sans-serif;
  text-align: left;
  cursor: pointer;
}
.figma-pagination-size__menu button:hover,
.figma-pagination-size__menu button:focus-visible {
  color: #e4e5e7;
  background: #1b1b1b;
}
.figma-pagination-size__menu button.is-selected {
  color: #3cbd86;
  background: rgb(0 143 90 / 8%);
}
.figma-pagination-size__menu i {
  color: #3cbd86;
  font-style: normal;
  opacity: 0;
}
.figma-pagination-size__menu button.is-selected i {
  opacity: 1;
}
.figma-pagination-jump {
  gap: 7px;
  color: #898e98;
  font: 300 12px/15px Inter, sans-serif;
  white-space: nowrap;
}
.figma-pagination-jump input {
  width: 52px;
  padding: 0 6px;
  text-align: center;
  appearance: textfield;
}
.figma-pagination-jump input::-webkit-inner-spin-button,
.figma-pagination-jump input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}
.component-example__stage { display: block; height: 24px; margin-top: 16px; padding: 0; border-radius: 0; background: transparent; }
.figma-tabs { display: inline-flex; height: 24px; gap: 12px; padding: 0; border-radius: 0; background: transparent; }
.figma-tabs button { min-width: 60px; height: 23px; padding: 0; border: 0; border-radius: 0; color: #898e98; background: transparent; font: 300 12px/15px Inter, sans-serif; cursor: pointer; transition: color 280ms ease; }
.figma-tabs button.is-active { color: #008f5a; background: transparent; }
.figma-tabs button:disabled { opacity: .3; cursor: default; }
.figma-tabs--line {
  --active-tab-index: 0;
  position: relative;
  border-bottom: 1px solid #33312e;
}
.figma-tabs--line::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: #008f5a;
  content: '';
  transform: translateX(calc(var(--active-tab-index) * 72px));
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}
.figma-tabs--line button { position: relative; }
.figma-tabs--scroll {
  display: flex;
  align-items: center;
  width: 251.48px;
  gap: 12px;
}
.figma-tabs__viewport {
  width: 204px;
  height: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.figma-tabs__viewport::-webkit-scrollbar { display: none; }
.figma-tabs__track {
  --active-tab-index: 0;
  position: relative;
  display: flex;
  width: max-content;
  min-width: 348px;
  height: 24px;
  gap: 12px;
  border-bottom: 1px solid #33312e;
}
.figma-tabs__track::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: #008f5a;
  content: '';
  transform: translateX(calc(var(--active-tab-index) * 72px));
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}
.figma-tabs__track button {
  flex: 0 0 60px;
}
.figma-tabs--scroll .figma-tabs__arrow {
  display: grid;
  flex: 0 0 11.74px;
  width: 11.74px;
  min-width: 11.74px;
  height: 24px;
  padding: 0;
  place-items: center;
  color: #b6b1a9;
  opacity: 1;
}
.figma-tabs--scroll .figma-tabs__arrow:disabled {
  color: #554f47;
  opacity: 1;
  cursor: default;
}
.figma-tabs--scroll .figma-tabs__arrow svg {
  display: block;
  width: 12px;
  height: 15px;
}
.component-view-all { position: absolute; z-index: 3; bottom: 17px; left: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border: 1px solid #1d1e1e; border-radius: 12px; color: #898e98; background: linear-gradient(117deg, #191b1c 1.35%, #101112 33.13%); font-size: 11px; text-decoration: none; }

.component-code-shell {
  position: absolute;
  /* The document panel intentionally overlaps the code panel, matching the layered composition. */
  z-index: 1;
  top: 14px;
  right: 0;
  width: 29.140625%;
  height: 575px;
  padding: 10px 10px 0 0;
  border: 1px solid #212223;
  border-radius: 0 17px 17px 0;
  background: transparent;
}

.component-code {
  position: relative;
  top: -1px;
  left: -1px;
  right: auto;
  width: 363px;
  max-width: calc(100% + 2px);
  min-height: 565px;
  height: 565px;
  border: 1px solid #454545;
  border-radius: 12px;
  background: linear-gradient(176deg, #1c1d1e -52.76%, #08090a 33.75%);
  box-shadow: none;
  font-size: 14px;
}

.component-code__switch {
  --active-code-index: 0;
  position: relative;
  width: 170px;
  height: 38px;
  margin: 18px auto 24px;
  padding: 4px;
  gap: 0;
  justify-content: space-between;
  border: 1px solid #2d2f31;
  border-radius: 15px;
  background: #101112;
}
.component-code__switch::before {
  position: absolute;
  z-index: 0;
  top: 4px;
  left: 4px;
  width: 77px;
  height: 28px;
  border-radius: 10px;
  background: var(--component-selected-bg);
  content: '';
  transform: translateX(calc(var(--active-code-index) * 85px));
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.component-code__switch button {
  position: relative;
  z-index: 1;
  width: 77px;
  flex: 0 0 77px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  color: #696d73;
  background: transparent;
  font: 14px/17px Inter, sans-serif;
}

.component-code__switch button.is-active { color: #f0f0f0; background: transparent; }
.component-code__view {
  transition: opacity 220ms ease, transform 360ms cubic-bezier(.22, 1, .36, 1), visibility 0s linear 360ms;
}
.component-code__view:not(.is-active) {
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.component-code__view.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 60ms, 60ms, 0s;
}
.component-code__lines { position: absolute; top: 80px; right: 0; left: 0; margin: 0; padding: 0 14px 0 62px; counter-reset: code-line; color: #898e98; list-style: none; }
.component-code__lines li { position: relative; min-height: 33px; padding-left: 0; color: #898e98; font: 300 14px/33px Inter, sans-serif; counter-increment: code-line; }
.component-code__lines li::before { position: absolute; left: -28px; width: 15px; color: #898e98; content: counter(code-line, decimal-leading-zero); font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; text-align: center; }
.component-code__lines code { color: #e5ebea; font: inherit; white-space: nowrap; }
.component-code__lines--wrap {
  right: 14px;
  bottom: 14px;
  padding-right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #4f5153 transparent;
  scrollbar-width: thin;
}
.component-code__lines--wrap code {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}
.component-code__lines--wrap::-webkit-scrollbar { width: 5px; }
.component-code__lines--wrap::-webkit-scrollbar-track { background: transparent; }
.component-code__lines--wrap::-webkit-scrollbar-thumb { border-radius: 999px; background: #4f5153; }
.component-code__lines .code-keyword,
.component-code__lines .code-operator { color: #f69de1; }
.component-code__lines .code-string,
.component-code__lines .code-attribute { color: #f6bf8d; }
.component-code__lines .code-tag,
.component-code__lines .code-function { color: #6eb7ca; }
.component-code__lines .code-syntax { color: #e5ebea; }
.component-api {
  position: absolute;
  top: 80px;
  left: 34px;
  width: 312px;
  color: #898e98;
  font: 400 12px/15px Inter, sans-serif;
}
.component-api__header {
  display: grid;
  grid-template-columns: 80px 96px 66px;
  column-gap: 24px;
  width: 312px;
  height: 39px;
  align-items: center;
  padding: 0 11px;
  border-radius: 10px;
  background: #1b1b1b;
}
.component-api__table {
  display: grid;
  grid-template-columns: 80px 96px 66px;
  column-gap: 24px;
  width: 312px;
  margin-top: 20px;
  padding: 0 11px;
}
.component-api__column {
  display: grid;
  grid-auto-rows: 15px;
  row-gap: 20px;
}
.component-api__column span {
  overflow: visible;
  white-space: nowrap;
}
.component-api--breadcrumbs .component-api__header,
.component-api--breadcrumbs .component-api__table {
  grid-template-columns: 68px 152px 46px;
  column-gap: 12px;
}
.component-api--breadcrumbs .component-api__column {
  grid-template-rows: 34px 34px 15px;
  grid-auto-rows: auto;
  row-gap: 16px;
}
.component-api--breadcrumbs .component-api__column span {
  align-self: start;
  line-height: 17px;
}
.component-api--breadcrumbs .component-api__column--description span {
  overflow-wrap: anywhere;
  white-space: normal;
}
.component-api--breadcrumbs .component-api__column--default span {
  color: #f6bf8d;
}
.component-api--breadcrumbs .component-api__column--default span:last-child {
  color: #4f4f4f;
}
.component-api--pagination .component-api__header,
.component-api--pagination .component-api__table {
  grid-template-columns: 100px 88px 86px;
  column-gap: 8px;
}
.component-api--pagination .component-api__column {
  grid-auto-rows: 15px;
  row-gap: 20px;
  font-size: 11px;
}
.component-api--pagination .component-api__column--default span:nth-child(n) {
  color: #f6bf8d;
}
.component-api--pagination .component-api__column--default span:nth-child(2),
.component-api--pagination .component-api__column--default span:nth-child(11) {
  color: #4f4f4f;
}
.component-api--input .component-api__header,
.component-api--input .component-api__table {
  grid-template-columns: 88px 105px 76px;
  column-gap: 8px;
}
.component-api--input .component-api__column {
  grid-auto-rows: 15px;
  row-gap: 20px;
  font-size: 11px;
}
.component-api--input .component-api__column--default span:nth-child(n) { color: #f6bf8d; }
.component-api--input .component-api__column--default span:nth-child(3),
.component-api--input .component-api__column--default span:nth-child(4),
.component-api--input .component-api__column--default span:nth-child(5),
.component-api--input .component-api__column--default span:nth-child(10),
.component-api--input .component-api__column--default span:nth-child(11) { color: #4f4f4f; }
.component-api--select .component-api__header,
.component-api--select .component-api__table {
  grid-template-columns: 82px 139px 52px;
  column-gap: 6px;
}
.component-api--select .component-api__column {
  grid-auto-rows: 15px;
  row-gap: 20px;
  font-size: 11px;
}
.component-api--select .component-api__column--default span:nth-child(n) { color: #f6bf8d; }
.component-api--select .component-api__column--default span:nth-child(1),
.component-api--select .component-api__column--default span:nth-child(2),
.component-api--select .component-api__column--default span:nth-child(3),
.component-api--select .component-api__column--default span:nth-child(9),
.component-api--select .component-api__column--default span:nth-child(11) { color: #4f4f4f; }
.component-api--radio .component-api__header,
.component-api--radio .component-api__table {
  grid-template-columns: 78px 141px 54px;
  column-gap: 6px;
}
.component-api--radio .component-api__column {
  grid-auto-rows: 15px;
  row-gap: 20px;
  font-size: 11px;
}
.component-api--radio .component-api__column--default span:nth-child(n) {
  color: #f6bf8d;
}
.component-api--radio .component-api__column--default span:nth-child(1),
.component-api--radio .component-api__column--default span:nth-child(2) {
  color: #4f4f4f;
}
.component-api--capsule-tabs .component-api__header,
.component-api--capsule-tabs .component-api__table {
  grid-template-columns: 82px 137px 54px;
  column-gap: 6px;
}
.component-api--capsule-tabs .component-api__column {
  grid-auto-rows: 15px;
  row-gap: 20px;
  font-size: 11px;
}
.component-api--capsule-tabs .component-api__column--default span:nth-child(n) {
  color: #f6bf8d;
}
.component-api--capsule-tabs .component-api__column--default span:nth-child(1),
.component-api--capsule-tabs .component-api__column--default span:nth-child(2),
.component-api--capsule-tabs .component-api__column--default span:nth-child(3),
.component-api--capsule-tabs .component-api__column--default span:nth-child(6) {
  color: #4f4f4f;
}
.component-api__column--property { color: #e5ebea; }
.component-api__column--description { color: #6eb7ca; }
.component-api__column--default { color: #f6bf8d; }
.component-api__column--default span:nth-child(-n + 2) { color: #4f4f4f; }
.component-api--breadcrumbs .component-api__column--default span:nth-child(-n + 2) { color: #f6bf8d; }
.components-visual__fade {
  position: absolute;
  z-index: 4;
  bottom: -2px;
  left: calc(-1 * var(--page-padding));
  width: 100vw;
  height: 113px;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(8 9 10 / 0%) 0%, #08090a calc(100% - 2px), #08090a 100%);
}

@media (prefers-reduced-motion: reduce) {
  .component-docs__nav-list::before,
  .component-code__switch::before,
  .component-code__view {
    transition: none;
  }
}

.about {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.about h2,
.project-index h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.04em;
}

.about div p {
  max-width: 560px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.project-index {
  min-height: 1088px;
  padding: 160px var(--page-padding);
  background: #08090a;
}

.project-index__header {
  width: min(1280px, calc(100vw - (2 * var(--page-padding))));
  margin-inline: auto;
}

.project-index h2 {
  max-width: 1264px;
  color: #898e98;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2102;
  letter-spacing: 0;
}

.project-index h2 > span {
  color: #fff;
}

.project-index__header > p {
  margin: 30px 0 0;
  color: #898e98;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
}

.project-index__header > p > span {
  color: #d8d8d8;
}

.project-index__grid {
  display: grid;
  width: min(1280px, calc(100vw - (2 * var(--page-padding))));
  margin: 100px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 80px;
}

.project-index__card {
  position: relative;
  min-width: 0;
  height: 463px;
}

.project-index__card + .project-index__card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  width: 1px;
  background: #1d1e1e;
  content: "";
}

.project-index__figure,
.project-index__card h3,
.project-index__description {
  margin: 0;
}

.project-index__figure {
  color: #898e98;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 2.88px;
}

.project-index__preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 50px;
  border: 1px solid #454545;
  border-radius: 12px;
  background: #08090a;
}

.project-index__card h3 {
  margin-top: 40px;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
}

.project-index__description {
  min-height: 48px;
  margin-top: 22px;
  color: #898e98;
  font-size: 12px;
  font-weight: 350;
  line-height: 24px;
}

.project-index__link {
  display: inline-flex;
  height: 17px;
  align-items: center;
  gap: 4px;
  margin-top: 22px;
  border-bottom: 1px solid transparent;
  color: #d8d8d8;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.project-index__link:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

.project-index__link svg {
  flex: 0 0 auto;
}

.visual-language {
  --visual-scroll-distance: 1600px;
  --visual-left-y: 0px;
  --visual-right-y: -1452px;
  min-height: calc(876px + var(--visual-scroll-distance));
  padding: 40px 0 94px;
  overflow: visible;
  scroll-margin-top: 72px;
  background: #08090a;
}

.visual-language__inner {
  position: sticky;
  top: 72px;
  width: min(1360px, calc(100vw - var(--page-padding)));
  height: 742px;
  margin-left: var(--page-padding);
}

.visual-language__copy {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 497px;
}

.visual-language__copy h2,
.visual-language__copy p {
  margin: 0;
}

.visual-language__copy h2 {
  color: #d8d8d8;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.2102;
  letter-spacing: 0;
}

.visual-language__copy h2 span {
  color: #898e98;
}

.visual-language__copy p {
  margin-top: 20px;
  color: #898e98;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2102;
}

.visual-language__gallery {
  --visual-right-end: 95px;
  position: absolute;
  top: 0;
  left: 497px;
  width: 863px;
  height: 742px;
  overflow: hidden;
}

.visual-language__column {
  position: absolute;
  top: 0;
  display: grid;
  width: 340px;
  gap: 30px;
  will-change: transform;
}

.visual-language__column--left {
  left: 73px;
  transform: translate3d(0, var(--visual-left-y), 0);
}

.visual-language__column--right {
  left: 443px;
  padding-bottom: 14px;
  transform: translate3d(0, var(--visual-right-y), 0);
}

.visual-language__card {
  width: 340px;
  height: 191px;
  overflow: hidden;
  border: 1px solid #1d1e1e;
  border-radius: 12px;
  background: #08090a;
}

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

.visual-language__fade {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  height: 110px;
  pointer-events: none;
}

.visual-language__fade--top {
  top: 0;
  background: linear-gradient(180deg, #080808 0%, rgb(8 8 8 / 0%) 100%);
}

.visual-language__fade--bottom {
  bottom: 0;
  background: linear-gradient(180deg, rgb(8 8 8 / 0%) 0%, #080808 100%);
}

.ask-sheep {
  min-height: 1118px;
  padding-top: 160px;
  overflow: hidden;
  scroll-margin-top: 72px;
  background: #08090a;
}

.ask-sheep__intro,
.ask-sheep__stage {
  width: min(1280px, calc(100vw - (2 * var(--page-padding))));
  margin-inline: auto;
}

.ask-sheep__intro {
  display: grid;
  min-height: 122px;
  grid-template-columns: repeat(2, minmax(0, 630px));
  gap: 20px;
}

.ask-sheep__intro h2,
.ask-sheep__intro p {
  margin: 0;
}

.ask-sheep__intro h2 {
  color: #d8d8d8;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2102;
  letter-spacing: 0;
}

.ask-sheep__intro h2 span {
  color: #898e98;
}

.ask-sheep__intro > p {
  align-self: start;
  margin-top: 37px;
  color: #898e98;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2102;
}

.ask-sheep__stage {
  position: relative;
  height: 596px;
  margin-top: 90px;
}

.ask-sheep__workspace {
  position: absolute;
  z-index: 0;
  top: 20px;
  left: 420px;
  width: 696px;
  height: 556px;
  border: 1px solid #212223;
  border-radius: 0 17px 17px 0;
}

.ask-sheep__workspace::before {
  position: absolute;
  top: 11px;
  left: -11px;
  width: 696px;
  height: 532px;
  border: 1px solid rgb(69 69 69 / 30%);
  border-radius: 17px 13px 13px 17px;
  background: #101112;
  content: "";
}

.ask-sheep__about-label {
  position: absolute;
  z-index: 1;
  top: 41px;
  left: 69px;
  display: inline-flex;
  width: 85px;
  height: 22px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #292929;
  border-radius: 15px;
  background: #151617;
  color: #898e98;
  font-family: "Inter About", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 400;
  font-synthesis: none;
  line-height: 12px;
  letter-spacing: 2px;
}

.ask-sheep__about {
  position: absolute;
  z-index: 1;
  top: 103px;
  left: 69px;
  width: 610.573px;
  height: 400px;
}

.ask-sheep__about p,
.ask-sheep__about h3,
.ask-sheep__about strong,
.ask-sheep__about span {
  margin: 0;
}

.ask-sheep__about-hello {
  position: absolute;
  top: 0;
  left: 0;
  width: 180.858px;
  height: 19px;
  overflow: hidden;
  color: #898e98;
  font-family: "Inter About", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-synthesis: none;
  line-height: 19.364px;
}

.ask-sheep__about h3 {
  position: absolute;
  top: 39px;
  left: 0;
  width: 391px;
  height: 90px;
  overflow: hidden;
  color: #fff;
  font-family: "LiciumFont 2022", "PingFang SC", "Hiragino Sans GB", sans-serif;
  font-size: 32px;
  font-weight: 350;
  font-synthesis: none;
  line-height: 44.8px;
  letter-spacing: 0;
}

.ask-sheep__about-description {
  position: absolute;
  top: 143px;
  left: 0;
  width: 462px;
  height: 40px;
  overflow: hidden;
  color: #797979;
  font-family: "LiciumFont 2022", "PingFang SC", "Hiragino Sans GB", sans-serif;
  font-size: 12px;
  font-weight: 350;
  font-synthesis: none;
  line-height: 20px;
}

.ask-sheep__about-skills {
  position: absolute;
  top: 237px;
  left: 0;
  width: 610.573px;
  height: 42px;
}

.ask-sheep__about-skill {
  position: absolute;
  top: 0;
  width: 180.858px;
  height: 42px;
  overflow: hidden;
}

.ask-sheep__about-skill--design { left: 0; }
.ask-sheep__about-skill--build { left: 214.858px; }
.ask-sheep__about-skill--ship { left: 429.715px; }

.ask-sheep__about-skill span {
  position: absolute;
  left: 0;
  display: block;
  width: 180.858px;
  overflow: hidden;
  white-space: nowrap;
}

.ask-sheep__about-skill-title {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 180.858px;
  height: 19px;
  align-items: center;
  gap: 7px;
}

.ask-sheep__about-skill-title svg {
  display: block;
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  color: #898e98;
  stroke: currentColor;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.ask-sheep__about-skill strong {
  display: block;
  color: #d8d8d8;
  font-family: "Inter About", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-synthesis: none;
  line-height: 19.364px;
}

.ask-sheep__about-skill span {
  top: 24px;
  height: 18px;
  color: #898e98;
  font-family: "Inter About", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 300;
  font-synthesis: none;
  line-height: 15.733px;
}

.ask-sheep__about-divider {
  position: absolute;
  top: 0;
  display: block;
  width: 1px;
  height: 42px;
  background: #454545;
}

.ask-sheep__about-divider--one { left: 197.858px; }
.ask-sheep__about-divider--two { left: 412.715px; }

.ask-sheep__about-current {
  position: absolute;
  top: 328px;
  left: 0;
  width: 462px;
  height: 16px;
  overflow: hidden;
  color: #898e98;
  font-family: "Inter About", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 300;
  font-synthesis: none;
  line-height: 15.733px;
  white-space: nowrap;
}

.ask-sheep__about-actions {
  position: absolute;
  top: 368px;
  left: 0;
  display: flex;
  gap: 15px;
}

.ask-sheep__about-action {
  display: inline-flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 16px;
  border-radius: 21px;
  font-family: "LiciumFont 2022", "PingFang SC", "Hiragino Sans GB", sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-synthesis: none;
  line-height: 18.2px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.ask-sheep__about-action:hover {
  opacity: .86;
  transform: translateY(-1px);
}

.ask-sheep__about-action:focus-visible {
  outline: 1px solid #898e98;
  outline-offset: 3px;
}

.ask-sheep__about-action img {
  display: block;
  flex: 0 0 auto;
}

.ask-sheep__about-action--contact {
  width: 90px;
  background: #fff;
  color: #08090a;
}

.ask-sheep__about-action--contact img {
  width: 14px;
  height: 15px;
}

.ask-sheep__about-action--github {
  width: 100px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.ask-sheep__about-action--github img {
  width: 14px;
  height: 14px;
}

.ask-sheep__agent {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 460px;
  height: 596px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 17px;
  background:
    linear-gradient(171.42deg, #191b1c 3.63%, #101112 66.14%) padding-box,
    linear-gradient(180deg, #1d1e1e 0%, #686868 23.56%, #1d1e1e 49.04%) border-box;
}

.ask-sheep__agent-header {
  display: flex;
  height: 69px;
  align-items: center;
  justify-content: space-between;
  padding: 0 21px;
  border-bottom: 1px solid #454545;
}

.ask-sheep__agent-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d8d8d8;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  line-height: 19px;
  transform: translateY(-.5px);
  transition: color 180ms ease, opacity 180ms ease;
}

.ask-sheep__agent-brand:hover {
  color: #fff;
}

.ask-sheep__agent-brand:focus-visible {
  border-radius: 5px;
  outline: 1px solid #898e98;
  outline-offset: 5px;
}

.ask-sheep__agent-brand img {
  display: block;
  width: 31.285px;
  height: 25.029px;
  object-fit: contain;
}

.ask-sheep__agent-menu {
  display: grid;
  gap: 3px;
  transform: translateY(-.5px);
}

.ask-sheep__agent-menu i {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #454545;
}

.ask-sheep__agent-welcome {
  position: absolute;
  top: auto;
  right: 20px;
  bottom: 154px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ask-sheep__agent-welcome h3,
.ask-sheep__agent-welcome p {
  margin: 0;
}

.ask-sheep__welcome-logo-field {
  position: relative;
  width: min(420px, 100%);
  height: 245px;
}

.ask-sheep__welcome-logo-grid {
  position: absolute;
  bottom: -5px;
  left: 50%;
  display: grid;
  width: 552px;
  height: 264px;
  grid-template-columns: repeat(23, 24px);
  grid-template-rows: repeat(11, 24px);
  -webkit-mask-image: radial-gradient(50% 100% at 50% 85%, #000, rgb(0 0 0 / 85%) 12%, rgb(0 0 0 / 50%) 30%, rgb(0 0 0 / 15%) 55%, transparent 82%);
  mask-image: radial-gradient(50% 100% at 50% 85%, #000, rgb(0 0 0 / 85%) 12%, rgb(0 0 0 / 50%) 30%, rgb(0 0 0 / 15%) 55%, transparent 82%);
  transform: translateX(-50%);
}

.ask-sheep__welcome-logo-node {
  display: grid;
  width: 24px;
  height: 24px;
  opacity: 0;
  pointer-events: none;
  place-items: center;
}

.ask-sheep__welcome-logo-field.is-playing .ask-sheep__welcome-logo-node {
  animation-name: ask-sheep-logo-field-flash;
  animation-duration: 2s;
  animation-delay: var(--pointer-delay);
  animation-timing-function: cubic-bezier(.22, .72, .28, 1);
  animation-fill-mode: backwards;
  animation-iteration-count: 1;
}

.ask-sheep__welcome-logo-node img {
  display: block;
  width: 18px;
  height: 14px;
  object-fit: contain;
  opacity: .5;
}

.ask-sheep__welcome-logo-core {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: calc(50% - .357px);
  display: grid;
  width: 31.285px;
  height: 25.029px;
  opacity: 1;
  place-items: center;
  transform: translateX(-50%);
}

.ask-sheep__welcome-logo-field.is-playing .ask-sheep__welcome-logo-core {
  animation-name: ask-sheep-logo-core-flash;
  animation-duration: 1.92s;
  animation-delay: .24s;
  animation-timing-function: linear;
  animation-fill-mode: backwards;
  animation-iteration-count: 1;
}

.ask-sheep__welcome-logo-core img {
  display: block;
  width: 31.285px;
  height: 25.029px;
  object-fit: contain;
}

.ask-sheep__welcome-logo-field.is-waiting .ask-sheep__welcome-logo-core,
.ask-sheep__welcome-logo-field.is-waiting + h3,
.ask-sheep__welcome-logo-field.is-waiting + h3 + p,
.ask-sheep__welcome-logo-field.is-waiting ~ .ask-sheep__prompts {
  opacity: 0;
}

.ask-sheep__welcome-logo-field.is-playing + h3 {
  animation: ask-sheep-welcome-copy-in .5s ease-out .28s both;
}

.ask-sheep__welcome-logo-field.is-playing + h3 + p {
  animation: ask-sheep-welcome-copy-in .45s ease-out .95s both;
}

.ask-sheep__welcome-logo-field.is-playing ~ .ask-sheep__prompts {
  animation: ask-sheep-welcome-copy-in .45s ease-out 1.12s both;
}

.ask-sheep__agent-welcome h3 {
  margin-top: 6px;
  color: #d8d8d8;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}

.ask-sheep__agent-welcome p {
  margin-top: 12px;
  color: #4f4f4f;
  font-size: 12px;
  line-height: 20px;
}

.ask-sheep__prompts {
  display: flex;
  width: 380px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.ask-sheep__prompts button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  border: 1px solid #292929;
  border-radius: 17px;
  background: transparent;
  color: #898e98;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ask-sheep__prompts button:first-child {
  width: 157px;
  flex: 0 0 157px;
  margin-left: -1px;
}

.ask-sheep__prompts button:hover,
.ask-sheep__prompts button:focus-visible {
  color: #d8d8d8;
  outline: none;
  transform: translateY(-1px);
}

.ask-sheep__conversation {
  position: absolute;
  top: 70px;
  right: 0;
  bottom: 130px;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #343638 transparent;
  scrollbar-width: thin;
}

.ask-sheep__agent.is-chatting .ask-sheep__agent-welcome {
  display: none;
}

.ask-sheep__agent.is-chatting .ask-sheep__conversation {
  display: flex;
}

.ask-sheep__message {
  display: flex;
  max-width: 86%;
  flex-direction: column;
  gap: 5px;
  animation: ask-sheep-message-in 220ms ease both;
}

.ask-sheep__message--user {
  align-self: flex-end;
  align-items: flex-end;
}

.ask-sheep__message--assistant {
  align-self: flex-start;
}

.ask-sheep__message-label {
  color: #5f6267;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ask-sheep__message p {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #292b2d;
  border-radius: 12px;
  color: #b9bbc0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  white-space: pre-wrap;
}

.ask-sheep__message--user p {
  border-color: #34363a;
  border-bottom-right-radius: 4px;
  background: #25272a;
  color: #e3e3e3;
}

.ask-sheep__message--assistant p {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.ask-sheep__typing {
  display: inline-flex;
  min-width: 52px;
  align-items: center;
  gap: 4px;
}

.ask-sheep__typing i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #898e98;
  animation: ask-sheep-typing 900ms infinite ease-in-out;
}

.ask-sheep__typing i:nth-child(2) { animation-delay: 120ms; }
.ask-sheep__typing i:nth-child(3) { animation-delay: 240ms; }

@keyframes ask-sheep-message-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ask-sheep-typing {
  0%, 70%, 100% { opacity: .35; transform: translateY(0); }
  35% { opacity: 1; transform: translateY(-2px); }
}

@keyframes ask-sheep-logo-field-flash {
  0% {
    opacity: 0;
    transform: translate(var(--pointer-x), var(--pointer-y)) scale(.6);
    animation-timing-function: cubic-bezier(.33, 0, .4, 1);
  }
  28% {
    opacity: var(--pointer-peak);
    transform: translate(0) scale(1);
    animation-timing-function: cubic-bezier(.45, 0, .55, 1);
  }
  50% { opacity: var(--pointer-trough); transform: translate(0) scale(.985); }
  67% { opacity: var(--pointer-peak-two); transform: translate(0) scale(1); }
  100% { opacity: .224; transform: translate(0) scale(1); }
}

@keyframes ask-sheep-logo-core-flash {
  0% {
    filter: drop-shadow(0 0 0 rgb(255 255 255 / 0%));
    opacity: 0;
    transform: translateX(-50%) scale(1);
    animation-timing-function: cubic-bezier(.25, 1, .5, 1);
  }
  32% {
    filter: drop-shadow(0 0 14px rgb(255 255 255 / 85%));
    opacity: 1;
    transform: translateX(-50%) scale(1.28);
    animation-timing-function: cubic-bezier(.45, 0, .55, 1);
  }
  100% {
    filter: drop-shadow(0 0 0 rgb(255 255 255 / 0%));
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@keyframes ask-sheep-welcome-copy-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.ask-sheep__composer {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  height: 100px;
  border: 1px solid rgb(69 69 69 / 30%);
  border-radius: 17px;
  background: rgb(255 255 255 / 2%);
  transition: border-color 180ms ease, background 180ms ease;
}

.ask-sheep__composer:focus-within {
  border-color: rgb(137 142 152 / 55%);
  background: rgb(255 255 255 / 3%);
}

.ask-sheep__composer textarea {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 56px 15px 16px;
  border: 0;
  outline: 0;
  resize: none;
  background: transparent;
  color: #d8d8d8;
  font: 400 13px/1.55 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scrollbar-width: none;
}

.ask-sheep__composer textarea::-webkit-scrollbar {
  display: none;
}

.ask-sheep__composer textarea::placeholder {
  color: #55595f;
}

.ask-sheep__send {
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #ddb5fb;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.ask-sheep__send:not(:disabled) {
  color: #ddb5fb;
}

.ask-sheep__send:hover:not(:disabled) {
  transform: scale(1.04);
}

.ask-sheep__send:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.ask-sheep__send:disabled {
  color: #898e98;
  cursor: default;
}

.ask-sheep__send svg {
  display: block;
  width: 38px;
  height: 38px;
}

.ask-sheep__send-fill {
  opacity: 1;
  transition: opacity 180ms ease;
}

.ask-sheep__send:disabled .ask-sheep__send-fill {
  opacity: .6;
}

.ask-sheep__robot,
.ask-sheep__platform,
.ask-sheep__platform-fade {
  position: absolute;
  z-index: 3;
  display: block;
  pointer-events: none;
}

.ask-sheep__robot {
  top: 142px;
  left: 1014px;
  width: 360px;
  height: 394px;
}

.ask-sheep__platform {
  z-index: 1;
  top: 423px;
  left: 1036px;
  width: 458px;
  height: 323px;
}

.ask-sheep__platform-fade {
  z-index: 4;
  top: 640px;
  left: 980px;
  width: 380px;
  height: 125px;
  background: linear-gradient(180deg, #080808 0%, rgb(8 8 8 / 0%) 100%);
}

.site-footer {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-padding);
  border-top: 1px solid #1d1e1e;
  background: #08090a;
  color: #898e98;
  font-size: 13px;
  font-weight: 300;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: #d8d8d8;
}

.contact {
  min-height: 620px;
}

.contact h2 {
  margin: 72px 0 52px;
  font-size: clamp(52px, 8vw, 116px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.055em;
}

.contact > a {
  display: inline-flex;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #797b7e;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 28px);
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 26px var(--page-padding);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes settle-in {
  from { opacity: 0; transform: translateY(22px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes robot-rig-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes robot-blink {
  0%, 100% { transform: scaleY(1); }
  42%, 62% { transform: scaleY(.06); }
}

@keyframes terminal-cursor-blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes work-tab-content-in {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes work-tab-label-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes design-state-enter {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes design-state-leave {
  from {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    filter: blur(2px);
    transform: translateY(-5px);
  }
}

@keyframes design-state-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .ask-sheep__workspace {
    top: 20px;
    right: 0;
    left: min(410px, 42vw);
    width: auto;
  }

  .ask-sheep__workspace::before {
    right: 10px;
    width: auto;
  }

  .ask-sheep__about {
    top: 88px;
    width: calc(100% - 92px);
    height: auto;
  }

  .ask-sheep__about h3 {
    position: static;
    width: auto;
    height: auto;
    margin-top: 16px;
    font-size: 29px;
    line-height: 1.35;
  }

  .ask-sheep__about-hello,
  .ask-sheep__about-description,
  .ask-sheep__about-skills,
  .ask-sheep__about-current,
  .ask-sheep__about-actions {
    position: static;
  }

  .ask-sheep__about-hello {
    width: auto;
  }

  .ask-sheep__about-description {
    width: auto;
    height: auto;
    margin-top: 15px !important;
  }

  .ask-sheep__about-skills {
    display: grid;
    width: 100%;
    height: auto;
    margin-top: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .ask-sheep__about-skill {
    position: relative;
    width: auto;
    height: auto;
    min-height: 66px;
    padding-left: 12px;
    border-left: 1px solid #454545;
  }

  .ask-sheep__about-skill--design {
    padding-left: 0;
    border-left: 0;
  }

  .ask-sheep__about-skill--design,
  .ask-sheep__about-skill--build,
  .ask-sheep__about-skill--ship {
    left: auto;
  }

  .ask-sheep__about-skill-title {
    position: static;
    width: auto;
    height: 19px;
  }

  .ask-sheep__about-skill strong,
  .ask-sheep__about-skill span {
    position: static;
    width: auto;
    height: auto;
    white-space: normal;
  }

  .ask-sheep__about-skill span {
    margin-top: 6px;
    font-size: 11px;
    line-height: 16px;
  }

  .ask-sheep__about-divider {
    display: none;
  }

  .ask-sheep__about-current {
    width: auto;
    height: auto;
    margin-top: 23px !important;
    line-height: 20px;
    white-space: normal;
  }

  .ask-sheep__about-actions {
    margin-top: 20px;
  }

  .ask-sheep__robot,
  .ask-sheep__platform,
  .ask-sheep__platform-fade {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 680px;
    padding-top: 170px;
  }

  .hero__visual {
    top: 300px;
    right: -70px;
    bottom: auto;
    width: 640px;
    max-width: 85vw;
  }

  .work-showcase {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .work-panel__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .activity-panel {
    display: none;
  }

  .built-project {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .built-project__pagination {
    display: none;
  }

  .components {
    min-height: 0;
  }

  .lianshan-japan {
    min-height: 377vh;
  }

  .project-index h2 {
    font-size: clamp(34px, 4.8vw, 42px);
  }

  .project-index__grid {
    column-gap: 48px;
  }

  .project-index__card + .project-index__card::before {
    left: -24px;
  }

  .visual-language {
    min-height: 0;
    padding: 96px var(--page-padding);
  }

  .visual-language__inner {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .visual-language__copy {
    position: relative;
    width: min(497px, 100%);
  }

  .visual-language__gallery {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    width: 100%;
    height: auto;
    margin-top: 64px;
    grid-template-columns: repeat(2, minmax(0, 340px));
    justify-content: end;
    gap: 30px;
    overflow: visible;
  }

  .visual-language__column {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .visual-language__column--right {
    padding-bottom: 0;
  }

  .visual-language__card {
    width: 100%;
    height: auto;
    aspect-ratio: 340 / 191;
  }

  .visual-language__fade {
    display: none;
  }

  .ask-sheep {
    min-height: 0;
    padding: 128px var(--page-padding) 120px;
  }

  .ask-sheep__intro,
  .ask-sheep__stage {
    width: 100%;
  }

  .ask-sheep__intro {
    display: block;
    min-height: 0;
  }

  .ask-sheep__intro > p {
    width: min(560px, 100%);
    margin-top: 28px;
  }

  .ask-sheep__stage {
    height: auto;
    margin-top: 72px;
  }

  .ask-sheep__agent {
    position: relative;
    width: min(460px, 100%);
    height: auto;
    min-height: 596px;
  }

  .ask-sheep__workspace {
    top: 20px;
    right: 0;
    left: min(410px, 42vw);
    width: auto;
  }

  .ask-sheep__workspace::before {
    right: 10px;
    width: auto;
  }

  .ask-sheep__robot {
    display: none;
  }

  .ask-sheep__platform {
    display: none;
  }

  .ask-sheep__platform-fade {
    display: none;
  }

  .components-visual {
    min-height: 530px;
  }

  .component-docs {
    width: calc(100% - 300px);
  }

  .component-code {
    width: 320px;
  }

  .built-project__content--gongzei {
    padding: 46px 40px 42px;
  }

  .built-project__gongzei-copy {
    position: static;
    width: auto;
  }

  .built-project__github {
    top: 45px;
    right: 40px;
  }

  .gongzei-showcase {
    position: static;
    width: 508px;
    max-width: 100%;
    height: 381px;
    margin-top: 36px;
  }

  .gongzei-feature-rail {
    position: relative;
    top: auto;
    left: auto;
    width: 269px;
    height: 368px;
    margin-top: 40px;
  }
}

@media (max-width: 720px) {
  :root {
    --page-padding: 22px;
  }

  .site-header {
    height: 64px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 38px;
    height: auto;
  }

  .menu-button {
    display: block;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 22px 24px;
    border-bottom: 1px solid var(--line);
    background: rgb(8 9 10 / 97%);
    transform: translateY(-120%);
    transition: transform 240ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav > a {
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin: 14px 0 0;
    border: 0 !important;
    text-align: center;
  }

  .menu-button[aria-expanded="true"] .menu-button__line:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-button__line:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: 670px;
    padding-top: 128px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    max-width: 390px;
    margin-top: 20px;
    font-size: clamp(40px, 11vw, 56px);
  }

  .hero__statement {
    align-items: flex-start;
    font-size: clamp(34px, 9vw, 46px);
  }

  .typewriter {
    white-space: normal;
  }

  .hero__visual {
    top: 326px;
    right: -102px;
    width: 630px;
    max-width: none;
    transform: scale(.72);
    transform-origin: top right;
  }

  .scroll-cue {
    position: absolute;
    z-index: 5;
    bottom: 34px;
    left: var(--page-padding);
    display: flex;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
  }

  .work {
    padding-inline: 14px;
    padding-bottom: 44px;
  }

  .work-showcase {
    display: block;
  }

  .work-sidebar {
    padding: 26px 20px 18px;
  }

  .work-tabs {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 28px;
  }

  .work-tab {
    justify-content: center;
    padding: 0 5px;
  }

  .work-github {
    display: none;
  }

  .work-panel {
    margin: 0 8px 8px;
  }

  .work-panel__content {
    padding: 30px 18px 20px;
  }

  .workflow-window {
    height: 330px;
  }

  .work-panel__body[data-active-work="demo"] .work-panel__content {
    padding: 28px 18px 20px;
  }

  .demo-video-shell {
    height: auto;
    aspect-ratio: 938 / 408;
  }

  .confirm-stack {
    right: -44px;
    transform: scale(.8);
    transform-origin: top right;
  }

  .built {
    min-height: 0;
    padding: 72px 14px 76px;
  }

  .components {
    padding: 78px 22px 76px;
  }

  .lianshan-japan {
    min-height: 335vh;
    padding-top: 160px;
    --lianshan-stage-overlap: 70px;
  }

  .lianshan-japan__header {
    padding-inline: 22px;
  }

  .lianshan-japan__header h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .lianshan-japan__header p {
    max-width: 330px;
    margin-top: 20px;
    font-size: 15px;
  }

  .lianshan-japan__cta {
    margin-top: 8px;
    font-size: 12px;
    line-height: 17px;
  }

  .lianshan-japan__stage {
    top: 64px;
    overflow: visible;
  }

  .lianshan-japan__stage::before {
    top: -64px;
    height: 112px;
  }

  .lianshan-japan__media {
    left: 50%;
    width: 178vw;
    transform: translateX(-50%);
  }

  .lianshan-japan__media video {
    width: min(100%, calc((100svh - 64px) * 16 / 9), 1280px);
    max-height: calc(100svh - 64px);
  }

  .project-index {
    min-height: 0;
    padding: 96px 22px;
  }

  .project-index h2 {
    font-size: clamp(32px, 9.4vw, 40px);
    line-height: 1.18;
  }

  .project-index h2 br {
    display: none;
  }

  .project-index__header > p {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .project-index__grid {
    display: block;
    margin-top: 72px;
  }

  .project-index__card {
    height: auto;
  }

  .project-index__card + .project-index__card {
    margin-top: 80px;
  }

  .project-index__card + .project-index__card::before {
    top: -40px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .project-index__preview {
    margin-top: 32px;
  }

  .project-index__card h3 {
    margin-top: 28px;
  }

  .project-index__description {
    min-height: 0;
    margin-top: 16px;
  }

  .project-index__link {
    margin-top: 18px;
  }

  .visual-language {
    padding: 96px 22px;
    scroll-margin-top: 64px;
  }

  .visual-language__copy h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .visual-language__copy p {
    font-size: 17px;
    line-height: 1.45;
  }

  .visual-language__copy p br {
    display: none;
  }

  .visual-language__gallery {
    margin-top: 56px;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    gap: 24px;
  }

  .visual-language__column {
    gap: 24px;
  }

  .ask-sheep {
    padding: 96px 22px;
    scroll-margin-top: 64px;
  }

  .ask-sheep__intro h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .ask-sheep__intro > p {
    font-size: 17px;
    line-height: 1.45;
  }

  .ask-sheep__stage {
    display: flex;
    flex-direction: column;
    margin-top: 56px;
    padding-bottom: 0;
  }

  .ask-sheep__workspace {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    display: block;
    order: 2;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 16px;
    padding: 70px 22px 30px;
    overflow: hidden;
    border-radius: 17px;
    background: #101112;
  }

  .ask-sheep__workspace::before {
    display: none;
  }

  .ask-sheep__about-label {
    top: 22px;
    left: 22px;
  }

  .ask-sheep__about {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: auto;
    height: auto;
  }

  .ask-sheep__about-hello,
  .ask-sheep__about-description,
  .ask-sheep__about-skills,
  .ask-sheep__about-current,
  .ask-sheep__about-actions {
    position: static;
  }

  .ask-sheep__about-hello {
    width: auto;
    height: 19px;
  }

  .ask-sheep__about h3 {
    position: static;
    width: auto;
    height: auto;
    margin-top: 18px;
    font-size: clamp(27px, 8vw, 32px);
    line-height: 1.4;
  }

  .ask-sheep__about-description {
    width: auto;
    height: auto;
    margin-top: 19px !important;
  }

  .ask-sheep__about-skills {
    display: grid;
    width: auto;
    height: auto;
    margin-top: 25px;
    border-top: 1px solid #292b2d;
  }

  .ask-sheep__about-skill,
  .ask-sheep__about-skill--design,
  .ask-sheep__about-skill--build,
  .ask-sheep__about-skill--ship {
    position: static;
    width: auto;
    height: auto;
    min-height: 0;
    padding: 13px 0;
    border-bottom: 1px solid #292b2d;
  }

  .ask-sheep__about-skill-title {
    position: static;
    width: auto;
    height: 19px;
  }

  .ask-sheep__about-skill strong,
  .ask-sheep__about-skill span {
    position: static;
    width: auto;
    height: auto;
    white-space: normal;
  }

  .ask-sheep__about-skill span {
    margin-top: 5px;
    line-height: 18px;
  }

  .ask-sheep__about-divider {
    display: none;
  }

  .ask-sheep__about-current {
    width: auto;
    height: auto;
    margin-top: 22px !important;
    line-height: 20px;
    white-space: normal;
  }

  .ask-sheep__about-actions {
    margin-top: 22px;
  }

  .ask-sheep__agent {
    order: 1;
    min-height: 540px;
  }

  .ask-sheep__agent-welcome {
    top: auto;
    bottom: 154px;
  }

  .ask-sheep__welcome-logo-field {
    height: 178px;
  }

  .ask-sheep__welcome-logo-grid {
    bottom: -4px;
    transform: translateX(-50%) scale(.72);
    transform-origin: 50% 100%;
  }

  .ask-sheep__prompts {
    width: 100%;
    gap: 8px;
  }

  .ask-sheep__prompts button {
    min-height: 32px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .ask-sheep__robot {
    display: none;
  }

  .ask-sheep__platform {
    display: none;
  }

  .components-visual {
    height: auto;
    min-height: 0;
    margin-top: 38px;
  }

  .component-docs {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .component-docs__body {
    display: block;
    height: auto;
    min-height: 0;
  }

  .component-docs__nav {
    display: block;
    height: auto;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid #292b2e;
  }

  .component-docs__search {
    width: 100%;
    margin-bottom: 10px;
  }

  .component-docs__nav-list {
    flex-direction: row;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .component-docs__nav-list::-webkit-scrollbar {
    display: none;
  }

  .component-docs__nav-list::before {
    display: none;
  }

  .component-docs__nav p,
  .component-docs__nav a {
    display: none;
  }

  .component-docs__nav .component-docs__all {
    display: none;
  }

  .component-docs__nav-list button,
  .component-docs__nav-list button.is-active {
    width: auto;
    min-width: max-content;
    height: 36px;
    min-height: 36px;
    margin: 0;
    padding: 0 11px;
    white-space: nowrap;
  }

  .component-docs__nav-list button.is-active {
    background: var(--component-selected-bg);
  }

  .component-docs__content {
    height: 538px;
    padding: 24px 18px 28px;
  }

  .component-import {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .component-import::-webkit-scrollbar {
    display: none;
  }

  .component-docs__tools span:first-child {
    display: none;
  }

  .component-docs__search {
    min-width: 0;
  }

  .component-preview__canvas {
    padding: 34px 20px;
  }

  .component-code-shell {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 575px;
    margin-top: 14px;
    padding: 10px 10px 0 0;
    border-radius: 17px;
  }

  .component-code {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: none;
    min-height: 350px;
    margin-top: 0;
  }

  .components-visual__fade {
    display: none;
  }

  .components__header h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .components__header p {
    margin-top: 14px;
    font-size: 15px;
  }

  .components-visual {
    margin-top: 38px;
  }

  .component-example--pagination {
    height: 120px;
    min-height: 120px;
  }

  .component-example--pagination-complete {
    height: 188px;
    min-height: 188px;
  }

  .figma-pagination,
  .figma-pagination__pages {
    gap: 2px;
  }

  .figma-pagination button,
  .figma-pagination__ellipsis {
    flex-basis: 25px;
    width: 25px;
    height: 28px;
    border-radius: 7px;
    font-size: 11px;
  }

  .figma-pagination .figma-pagination__arrow {
    flex-basis: 22px;
    width: 22px;
    font-size: 20px;
  }

  .figma-pagination-row {
    align-items: flex-start;
  }

  .figma-pagination-row .figma-pagination {
    flex-basis: 100%;
  }

  .figma-pagination-size {
    flex-basis: 108px;
    width: 108px;
  }


  .built__header {
    gap: 14px;
    margin: 0 8px 34px;
    padding: 0;
  }

  .built-project {
    display: block;
    max-width: none;
  }

  .built-projects {
    position: relative;
    top: auto;
    width: 100%;
    max-width: none;
    height: auto;
    overflow: visible;
    padding-top: 0;
    padding-bottom: 0;
  }

  .built-project--first,
  .built-project--second {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
  }

  html.header-hidden .built-project--first,
  html.header-hidden .built-project--second {
    top: auto;
  }

  .built-project--second {
    margin-top: 28px;
    transform: none;
  }

  .built-project--second::before {
    display: none;
  }

  .built-project--second .built-project__content {
    height: auto;
    min-height: 420px;
  }

  .built-project__index {
    width: 132px;
    height: 58px;
    border-right: 1px solid #454545;
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    font-size: 18px;
  }

  .built-project__content {
    display: block;
    height: auto;
    min-height: 0;
    border-radius: 0 14px 14px 14px;
  }

  .built-project__content--gongzei {
    padding: 42px 24px 32px;
  }

  .built-project__gongzei-title {
    flex-wrap: wrap;
  }

  .built-project__github {
    position: static;
    width: 100%;
    margin-top: 28px;
  }

  .gongzei-showcase {
    width: 100%;
    height: auto;
    margin-top: 30px;
  }

  .gongzei-screens {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
    grid-template-rows: 148px 102px;
    gap: 10px;
    width: 100%;
    height: 260px;
  }

  .gongzei-screen--today,
  .gongzei-screen--summary,
  .gongzei-screen--report {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
  }

  .gongzei-screen--today { grid-row: 1 / span 2; }

  .gongzei-mascot {
    top: 18px;
    left: 6px;
    width: 60px;
    height: 60px;
  }

  .gongzei-mascot-video {
    top: 18px;
    left: 6px;
    width: 60px;
    height: 60px;
  }

  .gongzei-feature-rail {
    position: relative;
    width: 100%;
    height: 332px;
    margin-top: 32px;
    grid-template-rows: repeat(3, 47px);
    gap: 45px;
    padding: 0;
  }

  .gongzei-feature-rail__line {
    left: 23px;
    height: 321px;
  }

  .gongzei-feature {
    min-height: 47px;
    padding-left: 62px;
  }

  .gongzei-feature__icon {
    left: 0;
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .gongzei-feature h4 {
    font-size: 15px;
  }

  .gongzei-feature p {
    font-size: 12px;
  }

  .gongzei-feature-rail__note {
    top: 281px;
    left: 0;
    width: 100%;
    padding-left: 0;
    font-size: 12px;
  }

  .gongzei-feature-rail__note span {
    font-size: 28px;
  }

  .built-project__details {
    padding: 46px 24px 38px;
  }

  .built-project__details h3 {
    font-size: clamp(25px, 8vw, 35px);
    white-space: normal;
  }

  .built-project__details p br {
    display: none;
  }

  .built-project__url span {
    overflow: hidden;
    max-width: calc(100vw - 100px);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .built-project__tags {
    flex-wrap: wrap;
  }

  .built-project__cta {
    width: 100%;
    margin-top: 36px;
  }

  .built-project__visual {
    height: min(100vw, 580px);
    border-top: 1px solid var(--line);
  }

  .built-project__orbit {
    width: min(100vw, 580px);
    height: min(100vw, 580px);
  }

  .built-project__card-shell {
    width: min(32vw, 190px);
    height: auto;
    aspect-ratio: 570 / 995;
  }

  .about,
  .contact {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .about {
    display: block;
  }

  .about h2 {
    margin-top: 58px;
  }

  footer {
    gap: 24px;
  }
}

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