:root {
  --ink: #101114;
  --paper: #f2f0e9;
  --blue: #5b72ff;
  --acid: #dfff4f;
  --white: #ffffff;
  --surface: #15171c;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: rgba(16, 17, 20, 0.12);
  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
  --sidebar-width: 240px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--acid);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-dark);
  background: rgba(16, 17, 20, 0.94);
  padding: 0 28px;
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand,
.topbar-actions {
  display: flex;
  align-items: center;
}

.brand-word {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand-word span,
.footer-brand span {
  color: var(--acid);
}

.brand-divider {
  width: 1px;
  height: 24px;
  margin: 0 16px;
  background: var(--border-dark);
}

.brand-label,
.version {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar-actions {
  gap: 24px;
}

.motion-toggle {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.motion-toggle:hover,
.motion-toggle:focus-visible {
  border-color: rgba(223, 255, 79, 0.6);
  color: var(--white);
  outline: none;
}

.motion-toggle-dot,
.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px rgba(223, 255, 79, 0.65);
}

.site-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  padding-top: var(--header-height);
}

.sidebar {
  position: fixed;
  inset: var(--header-height) auto 0 0;
  z-index: 50;
  display: flex;
  width: var(--sidebar-width);
  flex-direction: column;
  border-right: 1px solid var(--border-dark);
  background: var(--ink);
  padding: 42px 24px 28px;
  color: var(--white);
}

.sidebar-eyebrow,
.mini-kicker {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-link {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  border-radius: 10px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 600;
  transition: background 200ms ease, color 200ms ease;
}

.nav-link span {
  font-family: ui-monospace, monospace;
  font-size: 9px;
  opacity: 0.62;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.nav-link.active span {
  color: var(--acid);
  opacity: 1;
}

.sidebar-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
}

.sidebar-note p {
  margin: -3px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-transform: uppercase;
}

main {
  grid-column: 2;
  min-width: 0;
}

section {
  position: relative;
  scroll-margin-top: var(--header-height);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) clamp(28px, 6vw, 96px) 64px;
}

.section-dark,
.section-ink {
  background: var(--ink);
  color: var(--white);
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.section-blue {
  background: var(--blue);
  color: var(--white);
}

.section-acid {
  background: var(--acid);
  color: var(--ink);
}

.grid-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.glow-blue {
  top: 10%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: rgba(91, 114, 255, 0.25);
}

.glow-acid {
  bottom: -20%;
  left: 5%;
  width: 360px;
  height: 360px;
  background: rgba(223, 255, 79, 0.11);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
}

.hero-copy,
.hero-system {
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker > span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.kicker-acid {
  color: var(--acid);
}

.kicker-blue {
  color: var(--blue);
}

.kicker-ink {
  color: var(--ink);
}

.hero h1 {
  max-width: 930px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.9vw, 126px);
  font-weight: 600;
  letter-spacing: -0.068em;
  line-height: 0.84;
}

.hero h1 span {
  display: block;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.38);
}

.text-acid {
  color: var(--acid);
}

.hero-description {
  max-width: 660px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
}

.hero-meta {
  display: grid;
  max-width: 660px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--border-dark);
}

.hero-meta div {
  padding: 22px 18px 0 0;
}

.hero-meta strong {
  display: block;
  color: var(--acid);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-system {
  width: min(100%, 440px);
  margin: 40px auto 0;
  transform: rotate(2deg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.065);
  padding: 20px;
  backdrop-filter: blur(20px);
  animation: system-float 7s ease-in-out infinite;
}

.system-header,
.system-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-header {
  border-bottom: 1px solid var(--border-dark);
  padding: 2px 2px 18px;
}

.system-header i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px var(--acid);
}

.system-canvas {
  position: relative;
  height: 380px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--blue);
}

.system-canvas svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-line {
  fill: none;
  stroke: var(--acid);
  stroke-width: 2;
  stroke-dasharray: 8 12;
  animation: line-flow 2.4s linear infinite;
}

.flow-b {
  stroke: rgba(255, 255, 255, 0.78);
  animation-direction: reverse;
}

.system-card {
  position: absolute;
  display: flex;
  width: 70%;
  flex-direction: column;
  border-radius: 18px;
  padding: 18px;
}

.system-card-dark {
  top: 54px;
  right: 22px;
  background: var(--ink);
  color: var(--white);
  animation: card-shift-a 5.2s ease-in-out infinite;
}

.system-card-paper {
  bottom: 42px;
  left: 22px;
  background: var(--paper);
  color: var(--ink);
  animation: card-shift-b 5.8s ease-in-out infinite;
}

.mini-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.55;
  text-transform: uppercase;
}

.mini-line {
  width: 80%;
  height: 7px;
  margin-top: 16px;
  border-radius: 99px;
}

.line-light {
  background: rgba(255, 255, 255, 0.75);
}

.line-muted {
  width: 56%;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.system-card-paper strong {
  margin-top: 6px;
  font-family: var(--display);
  font-size: 38px;
  letter-spacing: -0.05em;
}

.mini-bars {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  width: 84px;
  height: 42px;
  align-items: flex-end;
  gap: 5px;
}

.mini-bars i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: var(--blue);
  animation: bar-pulse 3s ease-in-out infinite alternate;
}

.system-node {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 20px rgba(223, 255, 79, 0.8);
}

.node-a {
  top: 47%;
  left: 15%;
  animation: node-pulse 2.5s ease-in-out infinite;
}

.node-b {
  right: 13%;
  bottom: 25%;
  animation: node-pulse 2.5s 0.8s ease-in-out infinite;
}

.system-footer {
  padding: 2px;
}

.system-tag {
  border: 1px solid rgba(223, 255, 79, 0.4);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--acid);
}

.content-section {
  padding: clamp(80px, 10vw, 150px) clamp(28px, 7vw, 110px);
}

.section-intro {
  max-width: 1050px;
}

.section-intro h2 {
  max-width: 950px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.section-intro > p:last-child,
.split-intro > p {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(16, 17, 20, 0.62);
  font-size: 17px;
  line-height: 1.75;
}

.section-ink .section-intro > p:last-child,
.section-ink .split-intro > p,
.section-blue .section-intro > p:last-child,
.section-blue .split-intro > p {
  color: rgba(255, 255, 255, 0.64);
}

.split-intro {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 64px;
}

.split-intro > p {
  margin: 0;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 76px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 32px;
}

.principle-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: clamp(28px, 4vw, 50px);
}

.principle-card:nth-child(even) {
  border-right: 0;
}

.principle-card:nth-child(n + 3) {
  border-bottom: 0;
}

.principle-primary {
  background: var(--blue);
  color: var(--white);
}

.principle-number {
  color: var(--blue);
  font-family: ui-monospace, monospace;
  font-size: 12px;
}

.principle-primary .principle-number {
  color: var(--acid);
}

.principle-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.principle-card p {
  max-width: 480px;
  margin: 12px 0 0;
  color: rgba(16, 17, 20, 0.56);
  line-height: 1.65;
}

.principle-primary p {
  color: rgba(255, 255, 255, 0.7);
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 32px;
}

.color-card {
  display: flex;
  min-height: 400px;
  flex-direction: column;
  justify-content: flex-end;
  border: 0;
  border-right: 1px solid rgba(16, 17, 20, 0.14);
  padding: 28px;
  text-align: left;
  transition: flex 300ms ease;
}

.color-card:last-child {
  border-right: 0;
}

.color-card:hover,
.color-card:focus-visible {
  flex: 1.12;
  outline: 3px solid var(--white);
  outline-offset: -6px;
}

.color-ink {
  background: var(--ink);
  color: var(--white);
}

.color-paper {
  background: var(--paper);
  color: var(--ink);
}

.color-blue {
  background: var(--blue);
  color: var(--white);
}

.color-acid {
  background: var(--acid);
  color: var(--ink);
}

.color-role {
  margin-bottom: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.52;
  text-transform: uppercase;
}

.color-name {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.color-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  opacity: 0.65;
}

.color-value i {
  font-family: var(--body);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.usage-row {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: end;
  gap: 70px;
  margin-top: 70px;
}

.usage-copy h3,
.spacing-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.usage-copy p,
.spacing-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
}

.color-ratio {
  display: flex;
  height: 130px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
}

.color-ratio span {
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.color-ratio i {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-style: normal;
}

.ratio-ink {
  width: 60%;
  background: #1b1c21;
  color: var(--white);
}

.ratio-paper {
  width: 25%;
  background: var(--paper);
  color: var(--ink);
}

.ratio-blue {
  width: 10%;
  background: var(--blue);
  color: var(--white);
}

.ratio-acid {
  width: 5%;
  min-width: 46px;
  background: var(--acid);
  color: var(--ink);
}

.type-families {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 76px;
}

.type-family {
  min-width: 0;
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
}

.display-family {
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
}

.body-family {
  background: var(--white);
  font-family: var(--body);
}

.type-family-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
}

.type-family-meta span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.48;
  text-transform: uppercase;
}

.type-family-meta strong {
  grid-row: 2;
  font-size: 16px;
}

.type-family-meta i {
  grid-column: 2;
  grid-row: 2;
  font-size: 11px;
  font-style: normal;
  opacity: 0.5;
}

.type-family > p {
  margin: 80px 0 50px;
  font-size: clamp(100px, 13vw, 180px);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.display-family > p {
  color: var(--acid);
}

.body-family > p {
  color: var(--blue);
}

.glyphs {
  overflow: hidden;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.08em;
  line-height: 1.8;
  opacity: 0.58;
}

.type-scale {
  margin-top: 80px;
  border-top: 1px solid var(--border-light);
}

.type-scale-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 160px;
  align-items: baseline;
  gap: 30px;
  border-bottom: 1px solid var(--border-light);
  padding: 34px 0;
}

.type-scale-row > span,
.type-scale-row > i {
  color: rgba(16, 17, 20, 0.46);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.type-scale-row > i {
  text-align: right;
}

.type-scale-row p {
  margin: 0;
}

.specimen-hero,
.specimen-heading {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.specimen-hero {
  font-size: clamp(40px, 6vw, 82px);
  line-height: 0.9;
}

.specimen-heading {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.96;
}

.specimen-body {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
}

.specimen-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.layout-demo {
  margin-top: 80px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(16, 17, 20, 0.12);
  padding: clamp(24px, 4vw, 48px);
}

.layout-ruler,
.layout-caption {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.56);
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.layout-ruler {
  margin-bottom: 20px;
}

.layout-frame {
  display: grid;
  height: 260px;
  grid-template-columns: 32px repeat(3, 1fr 16px) 1fr 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.layout-padding,
.layout-gutter,
.layout-column {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.45);
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.layout-padding {
  background: var(--acid);
  color: var(--ink);
}

.layout-gutter {
  background: rgba(223, 255, 79, 0.2);
}

.layout-column {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.layout-caption {
  margin-top: 20px;
}

.spacing-system {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  align-items: end;
  gap: 80px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 70px;
}

.spacing-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.spacing-bars div {
  display: flex;
  min-width: 34px;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.spacing-bars i {
  display: block;
  max-width: 100%;
  height: 90px;
  background: var(--acid);
}

.spacing-bars span {
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.component-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 76px;
}

.showcase-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 28px;
  background: var(--white);
  padding: clamp(24px, 4vw, 42px);
}

.showcase-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 18px;
  color: rgba(16, 17, 20, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-heading i {
  font-family: ui-monospace, monospace;
  font-style: normal;
}

.button-row,
.label-examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 54px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.button-primary {
  border: 0;
  background: var(--acid);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--blue);
  color: var(--white);
}

.button-dark {
  border: 0;
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--blue);
}

.button-outline {
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
}

.label-panel {
  background: var(--blue);
  color: var(--white);
}

.label-panel .showcase-heading {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.55);
}

.label-examples {
  min-height: 160px;
}

.label-examples .kicker {
  margin: 0 14px 0 0;
}

.label-examples .kicker-blue {
  color: var(--acid);
}

.chip,
.status-pill {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.chip-dark {
  border-color: transparent;
  background: var(--ink);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-color: rgba(223, 255, 79, 0.34);
  background: rgba(223, 255, 79, 0.12);
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: node-pulse 2s ease-in-out infinite;
}

.cards-panel,
.radius-panel {
  grid-column: span 1;
}

.demo-card-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  padding-top: 28px;
}

.demo-service-card,
.demo-metric-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.demo-service-card {
  background: var(--ink);
  color: var(--white);
}

.demo-card-top {
  display: flex;
  justify-content: space-between;
  color: var(--acid);
  font-family: ui-monospace, monospace;
  font-size: 12px;
}

.demo-card-top i {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--body);
  font-size: 22px;
  font-style: normal;
}

.demo-service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.demo-service-card p,
.demo-metric-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.demo-metric-card {
  background: var(--acid);
}

.demo-metric-card > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-metric-card strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 86px);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.demo-metric-card p {
  color: rgba(16, 17, 20, 0.62);
}

.radius-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding-top: 34px;
}

.radius-examples > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 18px;
}

.radius-examples i {
  display: block;
  width: 80px;
  height: 80px;
  background: var(--blue);
}

.radius-examples span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.radius-sm {
  border-radius: 12px;
}

.radius-md {
  border-radius: 24px;
}

.radius-lg {
  border-radius: 32px;
}

.radius-pill {
  border-radius: 999px;
}

.component-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 28px;
}

.component-principles article {
  min-height: 230px;
  border-right: 1px solid var(--border-light);
  padding: 28px;
}

.component-principles article:last-child {
  border-right: 0;
}

.component-principles span,
.component-index,
.stage-label {
  color: var(--blue);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.component-principles h3 {
  margin: 72px 0 10px;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.component-principles p {
  margin: 0;
  color: rgba(16, 17, 20, 0.56);
  font-size: 12px;
  line-height: 1.65;
}

.component-library {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.component-detail {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 32px;
  background: var(--white);
}

.component-detail-header {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.55fr);
  align-items: end;
  gap: 60px;
  padding: clamp(28px, 4vw, 48px);
}

.component-detail-header h3 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.component-detail-header p {
  margin: 0;
  color: rgba(16, 17, 20, 0.56);
  font-size: 13px;
  line-height: 1.7;
}

.component-stage {
  margin: 0 12px 12px;
  border-radius: 24px;
  background: var(--paper);
  padding: clamp(24px, 4vw, 44px);
}

.action-stage .button-row {
  padding-top: 28px;
}

.icon-button {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  transition: background 220ms ease, transform 220ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-3px);
  background: var(--ink);
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-spec-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  margin-top: 48px;
  border-top: 1px solid var(--border-light);
  padding-top: 34px;
}

.button-sizes,
.button-states {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.button-sizes .stage-label,
.button-states .stage-label {
  width: 100%;
  margin-bottom: 8px;
}

.button-sm {
  min-height: 40px;
  padding: 0 17px;
  font-size: 11px;
}

.button-md {
  min-height: 48px;
  padding: 0 21px;
  font-size: 12px;
}

.button-lg {
  min-height: 56px;
}

.state-hover {
  background: var(--blue);
  color: var(--white);
}

.state-focus {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.button:disabled {
  transform: none;
  background: rgba(16, 17, 20, 0.12);
  color: rgba(16, 17, 20, 0.34);
  cursor: not-allowed;
}

.component-guidance {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding: 22px clamp(28px, 4vw, 48px);
}

.component-guidance > div {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 999px;
}

.component-guidance strong,
.component-guidance span {
  padding: 8px 12px;
  font-size: 10px;
}

.component-guidance strong {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guidance-do strong {
  background: var(--acid);
}

.guidance-dont strong {
  background: var(--ink);
  color: var(--white);
}

.component-guidance p {
  margin: 0 0 0 auto;
  color: rgba(16, 17, 20, 0.48);
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

.form-stage {
  background: var(--ink);
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field > span,
.select-control > span {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.field input,
.select-control select {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0 16px;
  color: var(--white);
  font: 13px var(--body);
  outline: none;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.field input:focus,
.field-focus input {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(223, 255, 79, 0.16);
}

.field small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.field-error input {
  border-color: #ff7a59;
}

.field-error small {
  color: #ff9c82;
}

.field-success input {
  border-color: var(--acid);
  background-image: radial-gradient(circle at calc(100% - 20px) 50%, var(--acid) 0 4px, transparent 5px);
}

.field-success small {
  color: var(--acid);
}

.selection-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 24px;
  margin-top: 40px;
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
}

.check-control,
.switch-control {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  cursor: pointer;
}

.check-control input,
.switch-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.check-control > span {
  position: relative;
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
}

.check-control input:checked + span {
  border-color: var(--acid);
  background: var(--acid);
}

.check-control input:checked + span::after {
  width: 8px;
  height: 4px;
  transform: translateY(-1px) rotate(-45deg);
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  content: "";
}

.switch-control > span {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.switch-control > span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  content: "";
  transition: transform 180ms ease;
}

.switch-control input:checked + span {
  background: var(--blue);
}

.switch-control input:checked + span::after {
  transform: translateX(18px);
}

.select-control {
  display: flex;
  flex-direction: column;
}

.select-control select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--acid) 50%),
    linear-gradient(135deg, var(--acid) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.anatomy-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-light);
}

.anatomy-row span {
  border-right: 1px solid var(--border-light);
  padding: 18px 24px;
  color: rgba(16, 17, 20, 0.52);
  font-size: 10px;
  font-weight: 700;
}

.anatomy-row span:last-child {
  border-right: 0;
}

.anatomy-row i {
  margin-right: 9px;
  color: var(--blue);
  font-family: ui-monospace, monospace;
  font-style: normal;
}

.navigation-stage {
  background: var(--blue);
}

.mini-header {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  background: var(--ink);
  padding: 0 22px;
  color: var(--white);
}

.mini-brand {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.mini-brand i {
  color: var(--acid);
  font-style: normal;
}

.mini-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.mini-header nav a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
}

.mini-header nav .mini-nav-active {
  color: var(--white);
}

.mini-header > button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--acid);
  padding: 0 16px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.mini-header > button span {
  margin-left: 8px;
}

.navigation-examples {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.navigation-examples > div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(16, 17, 20, 0.12);
  padding: 22px;
}

.navigation-examples .stage-label {
  color: rgba(255, 255, 255, 0.55);
}

.tab-list {
  display: inline-flex;
  max-width: 100%;
  margin-top: 30px;
  overflow-x: auto;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.16);
  padding: 4px;
}

.tab-list button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
}

.tab-list button.active {
  background: var(--white);
  color: var(--ink);
}

.mobile-dock {
  display: flex;
  max-width: 260px;
  align-items: center;
  justify-content: space-around;
  margin-top: 30px;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  background: var(--ink);
  padding: 7px;
}

.mobile-dock button {
  display: flex;
  min-width: 62px;
  min-height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

.mobile-dock button i {
  font-size: 15px;
  font-style: normal;
}

.mobile-dock button.active {
  background: rgba(223, 255, 79, 0.12);
  color: var(--acid);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
}

.breadcrumb i {
  opacity: 0.4;
  font-style: normal;
}

.breadcrumb span {
  color: var(--white);
  font-weight: 700;
}

.cards-stage {
  background: var(--ink);
}

.extended-card-grid {
  display: grid;
  grid-template-columns: 1fr 0.68fr 1.1fr;
  gap: 12px;
}

.extended-card-grid .demo-service-card,
.extended-card-grid .demo-metric-card,
.project-card {
  min-height: 390px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.card-tags span {
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
}

.project-visual {
  position: relative;
  display: grid;
  min-height: 230px;
  flex: 1;
  place-items: center;
  overflow: hidden;
  background: var(--blue);
}

.project-visual::before {
  position: absolute;
  top: -44px;
  right: -44px;
  width: 130px;
  height: 130px;
  border: 25px solid var(--acid);
  border-radius: 50%;
  content: "";
}

.project-window {
  position: relative;
  z-index: 2;
  width: 70%;
  height: 130px;
  transform: rotate(-3deg);
  border: 7px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  padding: 14px;
  box-shadow: 12px 12px 0 var(--acid);
}

.project-window i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 3px;
  border-radius: 50%;
  background: var(--ink);
}

.project-window span {
  display: block;
  width: 72%;
  height: 42px;
  margin-top: 18px;
  border-radius: 9px;
  background: var(--blue);
}

.project-card-copy {
  padding: 24px;
}

.project-card-copy > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card-copy h3 {
  margin: 9px 0 18px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.045em;
  line-height: 1;
}

.project-card-copy a {
  font-size: 11px;
  font-weight: 700;
}

.project-card-copy a i {
  margin-left: 6px;
  font-style: normal;
}

.card-rule-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 12px;
  background: var(--border-dark);
}

.card-rule-row span {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  padding: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.card-rule-row strong {
  margin-bottom: 4px;
  color: var(--acid);
  font-size: 10px;
}

.feedback-stage {
  padding-bottom: 0;
}

.feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.feedback-column {
  min-width: 0;
}

.demo-toast {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: var(--white);
  padding: 16px;
}

.feedback-symbol {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  font-size: 14px;
  font-weight: 700;
}

.error-toast .feedback-symbol {
  background: #ff7a59;
  color: var(--white);
}

.demo-toast strong {
  font-size: 12px;
}

.demo-toast p {
  margin: 3px 0 0;
  color: rgba(16, 17, 20, 0.5);
  font-size: 10px;
}

.demo-toast button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(16, 17, 20, 0.42);
  font-size: 18px;
}

.progress-card {
  margin-top: 12px;
  border-radius: 16px;
  background: var(--blue);
  padding: 20px;
  color: var(--white);
}

.progress-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
}

.progress-track {
  height: 8px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.2);
}

.progress-track i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--acid);
}

.progress-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.skeleton-label {
  display: block;
  margin-top: 26px;
}

.skeleton-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  margin-top: 12px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: var(--white);
  padding: 16px;
}

.skeleton-card > i {
  height: 78px;
  border-radius: 10px;
  background: rgba(16, 17, 20, 0.08);
}

.skeleton-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.skeleton-card span {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.08);
}

.skeleton-card span:nth-child(2) {
  width: 82%;
}

.skeleton-card span:nth-child(3) {
  width: 54%;
}

.status-examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  border-top: 1px solid var(--border-light);
  padding: 28px 0;
}

.status-examples .kicker {
  margin: 0 18px 0 0;
}

.chip-light {
  border-color: var(--border-light);
  color: rgba(16, 17, 20, 0.6);
}

.chip-ink {
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
}

.status-pill-light {
  border-color: rgba(91, 114, 255, 0.25);
  background: rgba(91, 114, 255, 0.1);
  color: var(--blue);
}

.status-pill-neutral {
  border-color: var(--border-light);
  background: rgba(16, 17, 20, 0.04);
  color: rgba(16, 17, 20, 0.55);
}

.compact-detail {
  padding-bottom: 12px;
}

.shape-anatomy-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
  margin: 0 12px;
}

.shape-anatomy-grid > div {
  border-radius: 24px;
  background: var(--paper);
  padding: clamp(24px, 4vw, 44px);
}

.shape-anatomy-grid > .radius-examples {
  padding-top: 64px;
}

.anatomy-demo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.anatomy-component {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: var(--white);
  padding: 20px;
}

.anatomy-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-style: normal;
}

.anatomy-component strong {
  font-size: 12px;
}

.anatomy-component p {
  margin: 4px 0 0;
  color: rgba(16, 17, 20, 0.5);
  font-size: 10px;
}

.anatomy-component > button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--acid);
}

.anatomy-marker {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  font: 9px ui-monospace, monospace;
}

.marker-one {
  top: -9px;
  left: -8px;
}

.marker-two {
  top: 9px;
  left: 50px;
}

.marker-three {
  top: 9px;
  left: 112px;
}

.marker-four {
  top: 9px;
  right: 9px;
}

.anatomy-demo ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.anatomy-demo li {
  color: rgba(16, 17, 20, 0.5);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.anatomy-demo li i {
  margin-right: 5px;
  color: var(--blue);
  font-family: ui-monospace, monospace;
  font-style: normal;
}

.motion-stage {
  position: relative;
  height: 480px;
  margin-top: 78px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 32px;
  background: var(--surface);
}

.motion-inputs,
.motion-outputs {
  position: absolute;
  z-index: 3;
  inset-block: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 74px 0;
}

.motion-inputs {
  left: 5%;
}

.motion-outputs {
  right: 5%;
}

.motion-inputs span,
.motion-outputs span {
  display: flex;
  width: 120px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.motion-inputs i {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.motion-outputs span:first-child {
  background: var(--paper);
  color: var(--ink);
}

.motion-outputs span:last-child {
  border-color: transparent;
  background: var(--acid);
  color: var(--ink);
}

.motion-paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.motion-paths path {
  fill: none;
  stroke: var(--blue);
  stroke-dasharray: 7 12;
  stroke-linecap: round;
  stroke-width: 2;
  animation: line-flow 2.4s linear infinite;
}

.motion-paths path:nth-child(even) {
  animation-delay: -0.8s;
}

.motion-agent {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 12px solid var(--blue);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--acid);
  animation: agent-breathe 4s ease-in-out infinite;
}

.motion-agent i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(223, 255, 79, 0.8);
}

.motion-agent span {
  position: absolute;
  top: calc(100% + 17px);
  color: var(--acid);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motion-tokens {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--border-dark);
}

.motion-tokens div {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-dark);
  padding: 28px 24px 0 0;
}

.motion-tokens div:not(:first-child) {
  padding-left: 24px;
}

.motion-tokens div:last-child {
  border-right: 0;
}

.motion-tokens span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.motion-tokens strong {
  margin-top: 10px;
  font-family: var(--display);
  font-size: 22px;
}

.motion-tokens i {
  margin-top: 5px;
  color: var(--acid);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-style: normal;
}

.voice-foundation {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  margin-top: 76px;
  border-radius: 32px;
  background: var(--ink);
  padding: clamp(30px, 5vw, 64px);
  color: var(--white);
}

.voice-foundation .mini-kicker,
.tone-context .mini-kicker,
.message-framework .mini-kicker,
.language-toolkit .mini-kicker,
.writing-rules .mini-kicker {
  display: block;
  color: var(--blue);
}

.voice-foundation .mini-kicker {
  color: var(--acid);
}

.voice-foundation-copy h3,
.tone-context-heading h3,
.toolkit-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.voice-foundation-copy > p,
.tone-context-heading > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.75;
}

.voice-attributes {
  display: grid;
  gap: 26px;
}

.voice-axis {
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 22px;
}

.voice-axis:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.voice-axis > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.voice-axis > div span {
  color: rgba(255, 255, 255, 0.52);
}

.voice-axis > div strong {
  font-weight: 600;
}

.voice-axis > i {
  position: relative;
  display: block;
  height: 2px;
  margin-top: 13px;
  background: rgba(255, 255, 255, 0.16);
}

.voice-axis > i::before,
.voice-axis > i::after {
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  content: "";
}

.voice-axis > i::before {
  left: 0;
}

.voice-axis > i::after {
  right: 0;
}

.voice-axis > i b {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 1px var(--acid);
}

.voice-axis > p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  line-height: 1.5;
}

.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 76px;
}

.voice-card {
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
}

.voice-do {
  background: var(--white);
}

.voice-dont {
  background: #e7e4dc;
}

.voice-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.voice-label span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
}

.voice-do .voice-label span {
  background: var(--acid);
}

.voice-dont .voice-label span {
  border: 1px solid var(--border-light);
}

.voice-card blockquote {
  margin: 70px 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.voice-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border-light);
  list-style: none;
}

.voice-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(16, 17, 20, 0.6);
  font-size: 13px;
}

.voice-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.tone-context {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 70px;
  margin-top: 100px;
}

.tone-context-heading {
  align-self: start;
}

.tone-context-heading > p {
  color: rgba(16, 17, 20, 0.56);
}

.tone-context-list {
  border-top: 1px solid var(--border-light);
}

.tone-context-list article {
  border-bottom: 1px solid var(--border-light);
  padding: 30px 0;
}

.tone-meta {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: baseline;
  gap: 12px;
}

.tone-meta span {
  color: var(--blue);
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.tone-meta strong {
  font-size: 12px;
}

.tone-meta i {
  color: rgba(16, 17, 20, 0.42);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tone-context-list blockquote {
  margin: 22px 0 12px 46px;
  font-family: var(--display);
  font-size: clamp(21px, 2.4vw, 31px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.tone-context-list article > p {
  max-width: 620px;
  margin: 0 0 0 46px;
  color: rgba(16, 17, 20, 0.52);
  font-size: 11px;
  line-height: 1.65;
}

.message-framework {
  margin-top: 100px;
  border-radius: 30px;
  background: var(--blue);
  padding: clamp(30px, 5vw, 56px);
  color: var(--white);
}

.message-framework > .mini-kicker {
  color: var(--acid);
}

.message-formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.message-formula > span {
  color: var(--acid);
  font-size: 18px;
}

.message-formula article {
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(16, 17, 20, 0.1);
  padding: 22px;
}

.message-formula article i {
  color: var(--acid);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-style: normal;
}

.message-formula article strong {
  display: block;
  margin-top: 48px;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.035em;
}

.message-formula article p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  line-height: 1.6;
}

.message-example {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}

.message-example > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.message-example p {
  max-width: 920px;
  margin: 0;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.65;
}

.message-example strong {
  color: var(--acid);
  font-weight: 600;
}

.language-toolkit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.word-choice,
.microcopy-guide {
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 44px);
}

.word-choice {
  background: var(--white);
}

.microcopy-guide {
  background: #e7e4dc;
}

.toolkit-heading h3 {
  max-width: 520px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.word-list,
.microcopy-list {
  margin-top: 54px;
  border-top: 1px solid var(--border-light);
}

.word-list > div,
.microcopy-list > div {
  display: grid;
  grid-template-columns: 68px 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  border-bottom: 1px solid var(--border-light);
}

.microcopy-list > div {
  grid-template-columns: 82px 1fr 0.7fr;
}

.word-list span,
.microcopy-list span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.word-list strong,
.microcopy-list strong {
  font-size: 11px;
}

.word-list i {
  color: rgba(16, 17, 20, 0.34);
  font-size: 8px;
  font-style: normal;
}

.word-list del,
.microcopy-list del {
  color: rgba(16, 17, 20, 0.38);
  font-size: 10px;
  text-decoration-color: #ff7a59;
}

.writing-rules {
  margin-top: 90px;
}

.writing-rules > .mini-kicker {
  color: rgba(16, 17, 20, 0.45);
}

.writing-rules > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 24px;
}

.writing-rules article {
  min-height: 210px;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 26px;
}

.writing-rules article:nth-child(3n) {
  border-right: 0;
}

.writing-rules article:nth-child(n + 4) {
  border-bottom: 0;
}

.writing-rules article i {
  color: var(--blue);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-style: normal;
}

.writing-rules article strong {
  display: block;
  margin-top: 68px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.writing-rules article p {
  margin: 9px 0 0;
  color: rgba(16, 17, 20, 0.52);
  font-size: 10px;
  line-height: 1.6;
}

.narrative-flow {
  margin-top: 78px;
}

.narrative-flow .mini-kicker {
  color: rgba(16, 17, 20, 0.45);
}

.narrative-flow ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  list-style: none;
}

.narrative-flow li {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  border-right: 1px solid var(--border-light);
  padding: 24px;
}

.narrative-flow li:last-child {
  border-right: 0;
  background: var(--blue);
  color: var(--white);
}

.narrative-flow i {
  color: var(--blue);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-style: normal;
}

.narrative-flow li:last-child i {
  color: var(--acid);
}

.narrative-flow strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.narrative-flow span {
  margin-top: 7px;
  font-size: 10px;
  opacity: 0.5;
}

.micro-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 28px;
}

.micro-principles article {
  min-height: 240px;
  border-right: 1px solid var(--border-dark);
  padding: 28px;
}

.micro-principles article:last-child {
  border-right: 0;
}

.micro-principles span {
  color: var(--acid);
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.micro-principles h3 {
  margin: 80px 0 10px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.micro-principles p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.65;
}

.micro-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.micro-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 28px;
}

.micro-card-blue {
  background: var(--blue);
  color: var(--white);
}

.micro-card-paper {
  background: var(--paper);
  color: var(--ink);
}

.micro-card-acid {
  background: var(--acid);
  color: var(--ink);
}

.micro-card-dark {
  background: var(--surface);
  color: var(--white);
}

.micro-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid currentColor;
  padding: 20px 24px;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  text-transform: uppercase;
  opacity: 0.58;
}

.micro-card-meta i {
  font-style: normal;
}

.micro-canvas {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
}

.micro-canvas::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  opacity: 0.65;
}

.micro-card-paper .micro-canvas::before,
.micro-card-acid .micro-canvas::before {
  background-image:
    linear-gradient(rgba(16, 17, 20, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.055) 1px, transparent 1px);
}

.micro-canvas svg {
  position: relative;
  z-index: 1;
  width: min(82%, 440px);
  height: auto;
}

.micro-card figcaption {
  min-height: 130px;
  border-top: 1px solid currentColor;
  padding: 26px;
}

.micro-card figcaption strong {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.035em;
}

.micro-card figcaption p {
  max-width: 500px;
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.65;
  opacity: 0.56;
}

.micro-path {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  animation: line-flow 2.8s linear infinite;
}

.micro-path-light {
  stroke: rgba(255, 255, 255, 0.78);
}

.micro-path-acid {
  stroke: var(--acid);
  animation-direction: reverse;
}

.micro-node {
  animation: node-pulse 3s ease-in-out infinite;
}

.node-ink {
  fill: var(--ink);
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 2;
}

.micro-core {
  fill: var(--blue);
  stroke: var(--acid);
  stroke-width: 2;
  transform-origin: 190px 150px;
  animation: micro-breathe 4s ease-in-out infinite;
}

.micro-core-ring {
  fill: var(--ink);
}

.micro-core-dot {
  fill: var(--acid);
}

.micro-output {
  stroke: var(--ink);
  stroke-width: 2;
  animation: micro-output-float 5s ease-in-out infinite;
}

.output-paper {
  fill: var(--paper);
}

.output-acid {
  fill: var(--acid);
  animation-delay: -2.5s;
}

.research-grid circle {
  fill: rgba(16, 17, 20, 0.18);
}

.research-grid circle:nth-child(8) {
  fill: var(--blue);
}

.scan-ring {
  fill: none;
  stroke: var(--ink);
  stroke-width: 7;
}

.scan-fill {
  fill: rgba(91, 114, 255, 0.12);
}

.scan-handle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 16;
  stroke-linecap: round;
}

.scan-target {
  fill: var(--acid);
  stroke: var(--blue);
  stroke-width: 5;
  animation: node-pulse 2.4s ease-in-out infinite;
}

.scan-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-dasharray: 6 9;
  animation: line-flow 2.8s linear infinite;
}

.ui-shell {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 8;
}

.ui-topbar,
.ui-sidebar {
  fill: var(--ink);
}

.ui-dot-blue {
  fill: var(--blue);
}

.ui-dot-acid {
  fill: var(--acid);
}

.ui-module {
  transform-box: fill-box;
  transform-origin: center;
  animation: module-breathe 5s ease-in-out infinite;
}

.module-main {
  fill: var(--blue);
}

.module-small {
  fill: rgba(16, 17, 20, 0.14);
  animation-delay: -1.6s;
}

.module-accent {
  fill: var(--ink);
  animation-delay: -3.2s;
}

.ui-chart {
  fill: none;
  stroke: var(--acid);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loop-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 16;
}

.loop-progress {
  fill: none;
  stroke: var(--blue);
  stroke-width: 10;
  stroke-linecap: round;
}

.loop-orbit {
  transform-origin: 210px 148px;
  animation: loop-rotate 12s linear infinite;
}

.loop-arrow {
  fill: var(--blue);
}

.loop-center {
  fill: var(--ink);
  stroke: var(--acid);
  stroke-width: 2;
}

.loop-bar {
  fill: var(--acid);
  transform-box: fill-box;
  transform-origin: bottom;
  animation: bar-pulse 3s ease-in-out infinite alternate;
}

.bar-two {
  animation-delay: -1s;
}

.bar-three {
  animation-delay: -2s;
}

.loop-signal {
  fill: var(--acid);
  stroke: var(--surface);
  stroke-width: 5;
  animation: node-pulse 3s ease-in-out infinite;
}

.signal-two {
  animation-delay: -1s;
}

.signal-three {
  animation-delay: -2s;
}

/* Microillustrations keep their geometry stable; only signals may travel. */
.micro-node,
.micro-core,
.micro-output,
.scan-target,
.ui-module,
.loop-bar,
.loop-signal {
  animation: none;
}

/* Product motion happens inside the interface without moving its modules. */
.ui-chart {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: chart-trace 4.8s ease-in-out infinite;
}

.ui-dot-blue {
  animation: indicator-blue 3.2s ease-in-out infinite;
}

.ui-dot-acid {
  animation: indicator-acid 3.2s 0.8s ease-in-out infinite;
}

.ui-module.module-small {
  animation: module-activity 4s ease-in-out infinite;
}

.ui-module.module-accent {
  animation-delay: -2s;
}

.micro-construction {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 70px;
  margin-top: 100px;
}

.micro-construction-copy .mini-kicker {
  display: block;
  color: var(--acid);
}

.micro-construction-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.micro-construction-copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.75;
}

.micro-tokens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 24px;
}

.micro-tokens article {
  min-height: 230px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 24px;
}

.micro-tokens article:nth-child(even) {
  border-right: 0;
}

.micro-tokens article:nth-child(n + 3) {
  border-bottom: 0;
}

.micro-tokens article > span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.micro-tokens article strong {
  display: block;
  margin-top: 26px;
  font-family: var(--display);
  font-size: 18px;
}

.micro-tokens article p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  line-height: 1.6;
}

.stroke-samples,
.shape-samples,
.micro-color-samples {
  display: flex;
  height: 58px;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.stroke-samples i {
  display: block;
  width: 54px;
  border-radius: 99px;
  background: var(--acid);
}

.stroke-samples i:nth-child(1) {
  height: 1.5px;
}

.stroke-samples i:nth-child(2) {
  height: 2px;
}

.stroke-samples i:nth-child(3) {
  height: 3px;
}

.shape-samples i {
  display: block;
  width: 42px;
  height: 42px;
  background: var(--blue);
}

.shape-samples i:first-child {
  border-radius: 50%;
}

.shape-samples i:nth-child(2) {
  border-radius: 12px;
}

.shape-samples i:last-child {
  width: 64px;
  height: 3px;
  border-radius: 99px;
  background: var(--acid);
}

.micro-color-samples i {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
}

.micro-color-samples i:nth-child(1) {
  background: var(--ink);
}

.micro-color-samples i:nth-child(2) {
  background: var(--paper);
}

.micro-color-samples i:nth-child(3) {
  background: var(--blue);
}

.micro-color-samples i:nth-child(4) {
  background: var(--acid);
}

.motion-sample {
  position: relative;
  height: 58px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.motion-sample::before {
  position: absolute;
  top: 50%;
  right: 14px;
  left: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.24);
  content: "";
}

.motion-sample i {
  position: absolute;
  top: calc(50% - 6px);
  left: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px rgba(223, 255, 79, 0.6);
  animation: token-travel 3s ease-in-out infinite;
}

.micro-usage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 100px;
}

.micro-usage article {
  border: 1px solid var(--border-dark);
  border-radius: 24px;
  padding: clamp(26px, 4vw, 42px);
}

.micro-usage-do {
  background: var(--blue);
}

.micro-usage-dont {
  background: var(--surface);
}

.micro-usage article > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.micro-usage article > div span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.micro-usage-dont article > div span,
.micro-usage-dont > div span {
  border: 1px solid var(--border-dark);
  background: transparent;
  color: var(--white);
}

.micro-usage article > div strong {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.micro-usage article > p {
  margin: 54px 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.micro-usage ul {
  display: grid;
  gap: 10px;
  margin: 0;
  border-top: 1px solid var(--border-dark);
  padding: 22px 0 0;
  list-style: none;
}

.micro-usage li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.micro-usage li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

@keyframes micro-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

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

@keyframes module-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.96);
  }
}

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

@keyframes token-travel {
  0%,
  100% {
    left: 14px;
  }
  50% {
    left: calc(100% - 26px);
  }
}

@keyframes chart-trace {
  0%,
  12% {
    stroke-dashoffset: 220;
  }
  55%,
  88% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -220;
  }
}

@keyframes indicator-blue {
  0%,
  100% {
    opacity: 0.35;
  }
  45%,
  65% {
    opacity: 1;
  }
}

@keyframes indicator-acid {
  0%,
  100% {
    opacity: 0.4;
  }
  45%,
  70% {
    opacity: 1;
  }
}

@keyframes module-activity {
  0%,
  100% {
    opacity: 0.48;
  }
  45%,
  70% {
    opacity: 1;
  }
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, 0.16);
  border-radius: 28px;
}

.access-grid article {
  min-height: 280px;
  border-right: 1px solid rgba(16, 17, 20, 0.16);
  padding: 32px;
}

.access-grid article:last-child {
  border-right: 0;
}

.access-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
}

.focus-icon {
  border: 3px solid var(--blue);
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}

.touch-icon {
  border-radius: 16px;
}

.touch-icon i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
}

.reduce-icon {
  font-family: var(--body);
  font-size: 20px;
}

.access-grid h3 {
  margin: 62px 0 10px;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.access-grid p {
  margin: 0;
  color: rgba(16, 17, 20, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.final-check {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 50px;
  margin-top: 70px;
  border-top: 1px solid rgba(16, 17, 20, 0.18);
  padding-top: 36px;
}

.final-check > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-dot-dark {
  background: var(--ink);
  box-shadow: none;
}

.final-check p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-check ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.final-check li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 600;
}

.final-check li::before {
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 8px;
  height: 4px;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  content: "";
}

footer {
  display: flex;
  min-height: 220px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--border-dark);
  background: var(--ink);
  padding: 60px clamp(28px, 7vw, 110px);
  color: var(--white);
}

.footer-brand {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.07em;
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

footer a:hover,
footer a:focus-visible {
  color: var(--acid);
  outline: none;
}

.copy-toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  transform: translateY(20px);
  border-radius: 999px;
  background: var(--acid);
  padding: 13px 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.copy-toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  animation-play-state: paused !important;
}

@keyframes system-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(2deg);
  }
  50% {
    transform: translate3d(12px, -14px, 0) rotate(0deg);
  }
}

@keyframes line-flow {
  to {
    stroke-dashoffset: -40;
  }
}

@keyframes card-shift-a {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes card-shift-b {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

@keyframes bar-pulse {
  to {
    transform: scaleY(0.72);
    transform-origin: bottom;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes agent-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@media (max-width: 1180px) {
  :root {
    --sidebar-width: 210px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-system {
    display: none;
  }

  .color-grid,
  .access-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .color-card:nth-child(2) {
    border-right: 0;
  }

  .color-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 17, 20, 0.14);
  }

  .access-grid article:nth-child(2) {
    border-right: 0;
  }

  .access-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 17, 20, 0.16);
  }

  .component-principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .component-principles article:nth-child(2) {
    border-right: 0;
  }

  .component-principles article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-light);
  }

  .micro-principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .micro-principles article:nth-child(2) {
    border-right: 0;
  }

  .micro-principles article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-dark);
  }

  .micro-construction {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .navigation-examples {
    grid-template-columns: 1fr 1fr;
  }

  .navigation-examples > div:last-child {
    grid-column: span 2;
  }

  .extended-card-grid {
    grid-template-columns: 1fr 0.8fr;
  }

  .project-card {
    grid-column: span 2;
  }

  .shape-anatomy-grid {
    grid-template-columns: 1fr;
  }

  .message-formula {
    grid-template-columns: 1fr 1fr;
  }

  .message-formula > span {
    display: none;
  }

  .motion-inputs {
    left: 3%;
  }

  .motion-outputs {
    right: 3%;
  }

  .motion-inputs span,
  .motion-outputs span {
    width: 100px;
  }

  .narrative-flow ol {
    grid-template-columns: repeat(3, 1fr);
  }

  .narrative-flow li {
    border-bottom: 1px solid var(--border-light);
  }
}

@media (max-width: 900px) {
  :root {
    --sidebar-width: 0px;
    --header-height: 66px;
  }

  .site-shell {
    display: block;
  }

  main {
    grid-column: auto;
  }

  .sidebar {
    inset: var(--header-height) 0 auto;
    width: auto;
    height: 52px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border-dark);
    padding: 6px 16px;
    scrollbar-width: none;
  }

  .sidebar::-webkit-scrollbar {
    display: none;
  }

  .sidebar-eyebrow,
  .sidebar-note {
    display: none;
  }

  .sidebar nav {
    flex-direction: row;
    gap: 2px;
  }

  .nav-link {
    display: flex;
    min-width: max-content;
    min-height: 40px;
    gap: 6px;
    padding: 8px 12px;
  }

  section {
    scroll-margin-top: calc(var(--header-height) + 52px);
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-top: 120px;
  }

  .split-intro,
  .usage-row,
  .spacing-system {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .type-scale-row {
    grid-template-columns: 90px 1fr;
  }

  .type-scale-row > i {
    display: none;
  }

  .component-showcase {
    grid-template-columns: 1fr;
  }

  .cards-panel,
  .radius-panel {
    grid-column: auto;
  }

  .component-detail-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .button-spec-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .component-guidance {
    grid-template-columns: auto auto;
  }

  .component-guidance p {
    grid-column: span 2;
    margin: 6px 0 0;
    text-align: left;
  }

  .selection-row {
    grid-template-columns: 1fr 1fr;
  }

  .select-control {
    grid-column: span 2;
  }

  .extended-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card {
    grid-column: span 2;
  }

  .voice-foundation,
  .tone-context,
  .language-toolkit {
    grid-template-columns: 1fr;
  }

  .voice-foundation,
  .tone-context {
    gap: 42px;
  }

  .micro-gallery {
    grid-template-columns: 1fr;
  }

  .micro-canvas {
    min-height: 340px;
  }

  .message-example {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .writing-rules > div {
    grid-template-columns: 1fr 1fr;
  }

  .writing-rules article,
  .writing-rules article:nth-child(3n),
  .writing-rules article:nth-child(n + 4) {
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }

  .writing-rules article:nth-child(even) {
    border-right: 0;
  }

  .writing-rules article:nth-child(n + 5) {
    border-bottom: 0;
  }

  .motion-tokens {
    grid-template-columns: repeat(2, 1fr);
  }

  .motion-tokens div:nth-child(2) {
    border-right: 0;
  }

  .motion-tokens div:nth-child(n + 3) {
    margin-top: 24px;
  }

  .final-check {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .topbar {
    padding: 0 16px;
  }

  .brand-divider,
  .brand-label,
  .version {
    display: none;
  }

  .motion-toggle {
    min-width: 42px;
    justify-content: center;
    padding: 0 13px;
  }

  #motion-toggle-label {
    display: none;
  }

  .hero,
  .content-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.4vw, 62px);
    line-height: 0.88;
  }

  .hero-description {
    margin-top: 30px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 20px;
  }

  .hero-meta div {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 0;
  }

  .hero-meta strong {
    min-width: 42px;
    font-size: 22px;
  }

  .section-intro h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .principle-grid,
  .type-families,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--border-light) !important;
  }

  .principle-card:last-child {
    border-bottom: 0 !important;
  }

  .color-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .micro-principles {
    grid-template-columns: 1fr;
  }

  .micro-principles article {
    min-height: 200px;
    border-right: 0;
    border-bottom: 1px solid var(--border-dark);
  }

  .micro-principles article:last-child {
    border-bottom: 0;
  }

  .micro-principles h3 {
    margin-top: 54px;
  }

  .micro-card {
    border-radius: 22px;
  }

  .micro-canvas {
    min-height: 270px;
  }

  .micro-card figcaption {
    min-height: 120px;
    padding: 22px;
  }

  .micro-construction,
  .micro-usage {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .micro-tokens {
    grid-template-columns: 1fr;
  }

  .micro-tokens article,
  .micro-tokens article:nth-child(even),
  .micro-tokens article:nth-child(n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--border-dark);
  }

  .micro-tokens article:last-child {
    border-bottom: 0;
  }

  .color-card {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 17, 20, 0.14);
  }

  .color-card:last-child {
    border-bottom: 0;
  }

  .color-ratio {
    height: 100px;
  }

  .type-family > p {
    margin: 70px 0 44px;
  }

  .type-scale-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .type-scale-row > span {
    order: -1;
  }

  .layout-frame {
    height: 180px;
    grid-template-columns: 20px repeat(3, 1fr 6px) 1fr 20px;
  }

  .layout-ruler span:nth-child(2),
  .layout-ruler span:nth-child(4),
  .layout-caption span:nth-child(2) {
    display: none;
  }

  .spacing-bars {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .spacing-bars div {
    min-width: 46px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .component-principles {
    grid-template-columns: 1fr;
  }

  .component-principles article {
    min-height: 200px;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .component-principles article:last-child {
    border-bottom: 0;
  }

  .component-principles h3 {
    margin-top: 52px;
  }

  .component-detail {
    border-radius: 24px;
  }

  .component-detail-header,
  .component-stage {
    padding: 24px;
  }

  .component-stage {
    margin: 0 8px 8px;
    border-radius: 18px;
  }

  .button-spec-grid,
  .form-grid,
  .selection-row,
  .navigation-examples,
  .extended-card-grid,
  .feedback-grid,
  .shape-anatomy-grid {
    grid-template-columns: 1fr;
  }

  .component-guidance {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 20px 24px;
  }

  .component-guidance > div {
    display: grid;
    grid-template-columns: 74px 1fr;
  }

  .component-guidance p {
    grid-column: auto;
  }

  .selection-row {
    align-items: stretch;
  }

  .select-control,
  .navigation-examples > div:last-child,
  .project-card {
    grid-column: auto;
  }

  .anatomy-row {
    grid-template-columns: 1fr 1fr;
  }

  .anatomy-row span:nth-child(2) {
    border-right: 0;
  }

  .anatomy-row span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-light);
  }

  .mini-header {
    padding: 0 15px;
  }

  .mini-header nav {
    display: none;
  }

  .mini-header > button {
    min-height: 42px;
  }

  .navigation-examples > div {
    padding: 18px;
  }

  .card-rule-row {
    grid-template-columns: 1fr;
  }

  .extended-card-grid .demo-service-card,
  .extended-card-grid .demo-metric-card,
  .project-card {
    min-height: 300px;
  }

  .status-examples {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-examples .kicker {
    margin: 0 0 10px;
  }

  .shape-anatomy-grid {
    margin: 0 8px;
  }

  .shape-anatomy-grid > div {
    border-radius: 18px;
    padding: 24px;
  }

  .shape-anatomy-grid > .radius-examples {
    padding-top: 40px;
  }

  .anatomy-component {
    grid-template-columns: auto 1fr;
  }

  .anatomy-component > button {
    grid-column: 2;
  }

  .marker-four {
    top: auto;
    right: 8px;
    bottom: 8px;
  }

  .anatomy-demo ol {
    grid-template-columns: 1fr 1fr;
  }

  .demo-card-grid {
    grid-template-columns: 1fr;
  }

  .demo-service-card,
  .demo-metric-card {
    min-height: 270px;
  }

  .radius-examples {
    grid-template-columns: 1fr;
  }

  .motion-stage {
    height: 400px;
  }

  .motion-inputs,
  .motion-outputs {
    padding: 50px 0;
  }

  .motion-inputs {
    left: 12px;
  }

  .motion-outputs {
    right: 12px;
  }

  .motion-inputs span,
  .motion-outputs span {
    width: 76px;
    min-height: 46px;
    border-radius: 14px;
    font-size: 8px;
  }

  .motion-inputs i {
    display: none;
  }

  .motion-agent {
    width: 78px;
    height: 78px;
    border-width: 10px;
  }

  .motion-tokens {
    grid-template-columns: 1fr;
  }

  .motion-tokens div {
    border-right: 0;
    border-bottom: 1px solid var(--border-dark);
    padding: 22px 0 !important;
    margin: 0 !important;
  }

  .motion-tokens div:last-child {
    border-bottom: 0;
  }

  .voice-card blockquote {
    margin: 50px 0;
  }

  .voice-foundation {
    padding: 28px;
  }

  .voice-attributes {
    gap: 22px;
  }

  .tone-context,
  .message-framework,
  .writing-rules {
    margin-top: 72px;
  }

  .tone-meta {
    grid-template-columns: 28px 1fr;
  }

  .tone-meta i {
    grid-column: 2;
  }

  .tone-context-list blockquote,
  .tone-context-list article > p {
    margin-left: 40px;
  }

  .message-formula {
    grid-template-columns: 1fr;
  }

  .message-formula article {
    min-height: 160px;
  }

  .message-formula article strong {
    margin-top: 38px;
  }

  .language-toolkit {
    grid-template-columns: 1fr;
  }

  .word-list > div,
  .microcopy-list > div {
    grid-template-columns: 1fr 1fr;
    gap: 7px 14px;
    padding: 15px 0;
  }

  .word-list span,
  .microcopy-list span {
    grid-column: span 2;
  }

  .word-list i {
    display: none;
  }

  .writing-rules > div {
    grid-template-columns: 1fr;
  }

  .writing-rules article,
  .writing-rules article:nth-child(even),
  .writing-rules article:nth-child(3n),
  .writing-rules article:nth-child(n + 4),
  .writing-rules article:nth-child(n + 5) {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .writing-rules article:last-child {
    border-bottom: 0;
  }

  .writing-rules article strong {
    margin-top: 48px;
  }

  .narrative-flow ol {
    grid-template-columns: 1fr;
  }

  .narrative-flow li {
    min-height: 150px;
    border-right: 0;
  }

  .access-grid article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 17, 20, 0.16);
  }

  .access-grid article:last-child {
    border-bottom: 0;
  }

  .access-grid h3 {
    margin-top: 42px;
  }

  .final-check ul {
    grid-template-columns: 1fr 1fr;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* Experience information architecture */
.design-system-page .creator-section {
  display: none;
}

.creator-page .hero,
.creator-page .content-section,
.creator-page main > footer {
  display: none;
}

.creator-page .creator-section {
  min-height: calc(100svh - var(--header-height));
}

.nav-link-external {
  color: rgba(255, 255, 255, 0.68);
}

/* Experience Home */
.experience-home {
  background: var(--ink);
}

.experience-main {
  min-width: 0;
  padding-top: var(--header-height);
}

.experience-hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.68fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%, rgba(91, 114, 255, 0.18), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(223, 255, 79, 0.05), transparent 24%),
    var(--ink);
  padding: 148px clamp(28px, 6vw, 110px) 110px;
  color: var(--white);
}

.experience-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.experience-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.experience-orbit-one {
  top: 4%;
  right: -10%;
  width: min(62vw, 850px);
  aspect-ratio: 1;
}

.experience-orbit-two {
  top: 18%;
  right: 2%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border-color: rgba(223, 255, 79, 0.08);
}

.experience-nav {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: clamp(28px, 6vw, 110px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.experience-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.experience-nav a:hover,
.experience-nav a.active {
  border-color: var(--border-dark);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.experience-nav a span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 7px;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-nav .is-disabled {
  cursor: default;
}

.experience-hero-copy,
.experience-signal {
  position: relative;
  z-index: 1;
}

.experience-hero-copy h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(66px, 7.4vw, 126px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.experience-hero-copy h1 span {
  display: block;
}

.experience-hero-copy > p:last-child {
  max-width: 610px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.75;
}

.experience-signal {
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 22px;
  background: rgba(16, 17, 20, 0.72);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
}

.signal-top,
.signal-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.38);
  font: 700 8px/1 var(--body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-top {
  border-bottom: 1px solid var(--border-dark);
}

.signal-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px rgba(223, 255, 79, 0.68);
}

.signal-core {
  position: relative;
  display: grid;
  aspect-ratio: 1.12;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
}

.signal-core::before {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(91, 114, 255, 0.24);
  filter: blur(60px);
  content: "";
}

.signal-ring {
  position: absolute;
  border: 1px solid rgba(91, 114, 255, 0.38);
  border-radius: 50%;
  animation: signal-pulse 5s ease-in-out infinite;
}

.signal-ring-one {
  width: 54%;
  aspect-ratio: 1;
}

.signal-ring-two {
  width: 76%;
  aspect-ratio: 1;
  border-color: rgba(223, 255, 79, 0.13);
  animation-delay: -2.5s;
}

.signal-core strong {
  position: relative;
  font-family: var(--display);
  font-size: clamp(50px, 5vw, 84px);
  letter-spacing: -0.07em;
}

.signal-core strong span {
  color: var(--acid);
}

.signal-core small {
  position: absolute;
  bottom: 17%;
  color: rgba(255, 255, 255, 0.34);
  font: 700 7px/1 var(--body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.signal-bottom {
  border-top: 1px solid var(--border-dark);
}

.experience-scroll {
  position: absolute;
  bottom: 34px;
  left: clamp(28px, 6vw, 110px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-scroll i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  color: var(--acid);
  font-style: normal;
}

.experience-spaces {
  background: var(--paper);
  padding: 120px clamp(28px, 6vw, 110px) 132px;
}

.spaces-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto 68px;
}

.spaces-heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 92px);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.spaces-heading > p {
  margin: 0;
  color: rgba(16, 17, 20, 0.58);
  font-size: 15px;
  line-height: 1.75;
}

.space-grid {
  display: grid;
  max-width: 1500px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.space-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, 0.14);
  border-radius: 18px;
  background: #e9e7df;
  flex-direction: column;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

a.space-card:hover {
  z-index: 1;
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(16, 17, 20, 0.15);
}

.space-card-top {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(16, 17, 20, 0.11);
  padding: 0 22px;
}

.space-index {
  color: rgba(16, 17, 20, 0.42);
  font: 700 9px/1 ui-monospace, monospace;
}

.space-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: rgba(16, 17, 20, 0.06);
  padding: 7px 10px;
  color: rgba(16, 17, 20, 0.56);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.space-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.space-status-beta i {
  background: var(--acid);
  box-shadow: 0 0 10px rgba(223, 255, 79, 0.7);
}

.space-status-soon {
  background: transparent;
}

.space-visual {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 17, 20, 0.11);
}

.system-preview {
  background: var(--ink);
}

.preview-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.preview-type {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: var(--paper);
  font: 600 clamp(90px, 10vw, 150px)/0.8 var(--display);
  letter-spacing: -0.09em;
}

.preview-swatch {
  position: absolute;
  width: 28%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.swatch-blue {
  top: 22%;
  right: 13%;
  background: var(--blue);
  box-shadow: 0 0 60px rgba(91, 114, 255, 0.34);
}

.swatch-acid {
  top: 14%;
  right: 7%;
  width: 8%;
  background: var(--acid);
}

.preview-line {
  position: absolute;
  right: 12%;
  bottom: 18%;
  width: 36%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.creator-preview {
  background:
    radial-gradient(circle at 78% 22%, rgba(91, 114, 255, 0.28), transparent 28%),
    #0d0e12;
}

.creator-preview-prompt {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 68%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  padding: 14px;
  color: var(--white);
}

.creator-preview-prompt span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.creator-preview-prompt p {
  max-width: 88%;
  margin: 9px 0 0;
  font-size: 10px;
  line-height: 1.45;
}

.creator-preview-prompt i {
  position: absolute;
  right: 13px;
  bottom: 13px;
  color: var(--acid);
  font-style: normal;
}

.creator-preview-output {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 58%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(150deg, transparent 30%, rgba(91, 114, 255, 0.7)),
    var(--ink);
  padding: 18px;
  color: var(--white);
  box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.34);
}

.creator-preview-output small {
  color: var(--acid);
  font-size: 5px;
  letter-spacing: 0.12em;
}

.creator-preview-output strong {
  position: absolute;
  bottom: 20px;
  left: 18px;
  font: 700 clamp(22px, 2.5vw, 38px)/0.9 var(--display);
  letter-spacing: -0.06em;
}

.resources-preview {
  background: #d9d6cc;
}

.resource-file {
  position: absolute;
  display: flex;
  width: 48%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(16, 17, 20, 0.14);
  border-radius: 4px;
  background: var(--paper);
  padding: 16px;
  box-shadow: 0 16px 30px rgba(16, 17, 20, 0.13);
}

.resource-file-back {
  top: 32px;
  left: 18%;
  transform: rotate(-10deg);
  background: var(--blue);
}

.resource-file-mid {
  top: 22px;
  right: 14%;
  transform: rotate(8deg);
  background: var(--acid);
}

.resource-file-front {
  top: 38px;
  left: 28%;
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
}

.resource-file span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.resource-file-front strong {
  font: 600 22px/0.98 var(--display);
  letter-spacing: -0.05em;
}

.space-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 24px 24px;
}

.space-card-copy > span {
  color: rgba(16, 17, 20, 0.42);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.space-card-copy h3 {
  margin: 12px 0 14px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.055em;
}

.space-card-copy p {
  margin: 0;
  color: rgba(16, 17, 20, 0.58);
  font-size: 12px;
  line-height: 1.65;
}

.space-card-copy strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(16, 17, 20, 0.11);
  margin-top: auto;
  padding-top: 20px;
  font-size: 10px;
}

.space-card-copy strong i {
  font-size: 17px;
  font-style: normal;
}

.experience-manifesto {
  overflow: hidden;
  background: var(--blue);
  padding: 120px clamp(28px, 8vw, 140px);
  color: var(--white);
}

.experience-manifesto::after {
  position: absolute;
  top: -30%;
  right: -8%;
  width: 50vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.018);
}

.experience-manifesto > p {
  position: relative;
  z-index: 1;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-manifesto h2 {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 108px);
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.experience-manifesto h2 span {
  color: var(--acid);
}

.experience-manifesto > div {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  margin-top: 58px;
}

.experience-manifesto > div span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
}

.experience-footer {
  background: var(--ink);
}

@keyframes signal-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .experience-hero {
    grid-template-columns: 1fr;
  }

  .experience-signal {
    display: none;
  }

  .space-grid {
    grid-template-columns: 1fr 1fr;
  }

  .space-card-resources {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .experience-hero {
    min-height: 850px;
    padding: 156px 22px 100px;
  }

  .experience-nav {
    top: 24px;
    left: 16px;
    max-width: calc(100% - 32px);
    overflow-x: auto;
  }

  .experience-nav a {
    flex: 0 0 auto;
    padding: 0 12px;
  }

  .experience-nav .is-disabled {
    display: none;
  }

  .experience-hero-copy h1 {
    font-size: clamp(60px, 19vw, 86px);
  }

  .experience-scroll {
    bottom: 28px;
    left: 22px;
  }

  .experience-spaces {
    padding: 88px 18px;
  }

  .spaces-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
  }

  .space-grid {
    grid-template-columns: 1fr;
  }

  .space-card,
  .space-card-resources {
    min-height: 610px;
    grid-column: auto;
  }

  .experience-manifesto {
    padding: 88px 22px;
  }

  .experience-manifesto > div {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Experience map */
.experience-map {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  aspect-ratio: 1;
  justify-self: center;
}

.experience-map::before {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: rgba(91, 114, 255, 0.18);
  filter: blur(70px);
  content: "";
}

.experience-map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-dasharray: 3 7;
  stroke-width: 1;
}

.experience-map-lines circle:first-of-type {
  stroke: rgba(91, 114, 255, 0.26);
  stroke-dasharray: none;
}

.experience-map-lines circle:last-of-type {
  stroke: rgba(223, 255, 79, 0.1);
  stroke-dasharray: 2 8;
}

.map-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 158px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(223, 255, 79, 0.34);
  border-radius: 50%;
  background: rgba(16, 17, 20, 0.82);
  flex-direction: column;
  box-shadow:
    0 0 0 18px rgba(91, 114, 255, 0.04),
    0 0 60px rgba(91, 114, 255, 0.24);
  transform: translate(-50%, -50%);
}

.map-core::after {
  position: absolute;
  top: 13px;
  right: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
  content: "";
}

.map-core span,
.map-core small {
  color: rgba(255, 255, 255, 0.4);
  font: 700 7px/1 var(--body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map-core strong {
  margin: 8px 0 5px;
  font: 600 48px/0.9 var(--display);
  letter-spacing: -0.08em;
}

.map-node {
  position: absolute;
  display: grid;
  min-width: 126px;
  grid-template-columns: 25px 1fr;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(16, 17, 20, 0.82);
  padding: 13px 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.map-node::before {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.map-node i {
  grid-row: span 2;
  color: var(--acid);
  font: 700 7px/1 ui-monospace, monospace;
  font-style: normal;
}

.map-node strong {
  color: rgba(255, 255, 255, 0.86);
  font: 600 11px/1 var(--display);
}

.map-node span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-node-brand {
  top: 18%;
  left: 4%;
}

.map-node-system {
  top: 14%;
  right: 0;
}

.map-node-creator {
  right: -2%;
  bottom: 17%;
}

.map-node-resources {
  bottom: 10%;
  left: 7%;
}

.map-node-creator::before {
  border-color: var(--acid);
  background: var(--acid);
  box-shadow: 0 0 10px rgba(223, 255, 79, 0.65);
}

.map-coordinate {
  position: absolute;
  color: rgba(255, 255, 255, 0.22);
  font: 700 7px/1 ui-monospace, monospace;
  letter-spacing: 0.14em;
}

.map-coordinate-top {
  top: 1%;
  left: 48%;
}

.map-coordinate-bottom {
  right: 23%;
  bottom: 1%;
}

@media (max-width: 1080px) {
  .experience-map {
    display: none;
  }
}

/* Creator focused workspace */
.creator-top-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  padding: 4px;
}

.creator-top-nav a,
.creator-top-nav span {
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 700;
}

.creator-top-nav a:hover {
  color: var(--white);
}

.creator-top-nav span {
  background: rgba(223, 255, 79, 0.1);
  color: var(--acid);
}

.creator-page .site-shell {
  display: block;
}

.creator-page .sidebar {
  display: none;
}

.creator-page main {
  grid-column: auto;
}

.creator-page .creator-section {
  min-height: calc(100svh - var(--header-height));
  background: #0b0c0f;
  padding: 0;
}

.creator-page .creator-heading,
.creator-page .creator-shell {
  width: 100%;
  max-width: 1680px;
}

.creator-page .creator-heading {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 22px;
}

.creator-page .creator-heading .kicker {
  margin-bottom: 9px;
}

.creator-page .creator-heading h2 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
}

.creator-page .creator-heading > p {
  max-width: 480px;
  font-size: 12px;
  line-height: 1.55;
}

.creator-page .creator-shell {
  max-width: none;
  min-height: 520px;
  height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
  border: 0;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}

.creator-page .creator-form {
  max-height: 100%;
  gap: 14px;
  overflow-y: auto;
  padding: 22px;
  scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
  scrollbar-width: thin;
}

.creator-page .creator-field-large textarea {
  min-height: 104px;
}

.creator-page .creator-submit {
  position: sticky;
  bottom: 0;
  z-index: 2;
  flex: 0 0 auto;
  margin-top: auto;
  box-shadow:
    0 -16px 26px rgba(21, 23, 28, 0.94),
    0 8px 24px rgba(223, 255, 79, 0.08);
}

.creator-page .creator-error {
  flex: 0 0 auto;
}

.creator-copy-details {
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.creator-copy-details summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 14px;
  cursor: pointer;
  list-style: none;
}

.creator-copy-details summary::-webkit-details-marker {
  display: none;
}

.creator-copy-details summary > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.creator-copy-details summary strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.creator-copy-details summary small {
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
}

.creator-copy-details summary > i {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--acid);
  font-size: 16px;
  font-style: normal;
  transition: transform 180ms ease;
}

.creator-copy-details[open] summary > i {
  transform: rotate(45deg);
}

.creator-copy-fields {
  display: flex;
  gap: 14px;
  border-top: 1px solid var(--border-dark);
  padding: 14px;
  flex-direction: column;
}

.creator-page .creator-workspace {
  min-height: 0;
}

.creator-page .canvas-stage {
  width: min(82%, 820px);
  max-height: calc(100% - 126px);
  margin: auto;
}

.creator-page .canvas-stage[data-format="landscape"] {
  width: min(92%, 1120px);
}

.creator-page .canvas-stage[data-format="portrait"] {
  width: min(54%, 620px);
}

.creator-page .workspace-note {
  margin-top: 12px;
}

@media (max-width: 980px) {
  .creator-top-nav {
    display: none;
  }

  .creator-page .creator-section {
    padding: 0;
  }

  .creator-page .creator-shell {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .creator-page .creator-heading > p {
    display: none;
  }
}

@media (max-width: 780px) {
  .creator-page .creator-section {
    padding: 0;
  }

  .creator-page .creator-heading {
    min-height: auto;
    margin-bottom: 20px;
  }

  .creator-page .creator-heading h2 {
    font-size: 34px;
  }

  .creator-page .creator-shell {
    height: auto;
    grid-template-columns: 1fr;
  }

  .creator-page .creator-form {
    max-height: none;
    overflow: visible;
  }

  .creator-page .creator-submit {
    position: static;
    box-shadow: none;
  }

  .creator-page .creator-workspace {
    min-height: 590px;
  }
}

/* Experience Quotes entry */
.space-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.space-card-resources {
  grid-column: auto;
}

.quotes-preview {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #101114;
  background-size: 34px 34px;
  padding: 28px;
  color: var(--white);
}

.quote-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font: 700 7px/1 var(--body);
  letter-spacing: 0.12em;
}

.quote-preview-head i {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 9px;
  font-style: normal;
}

.quote-preview-total {
  display: block;
  margin-top: 38px;
  font: 600 clamp(40px, 5vw, 72px)/1 var(--display);
  letter-spacing: -0.065em;
}

.quote-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 26px;
}

.quote-preview-metrics > span {
  display: flex;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 12px 0 0;
  flex-direction: column;
}

.quote-preview-metrics > span:last-child {
  border-right: 0;
  padding-left: 12px;
}

.quote-preview-metrics small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
}

.quote-preview-metrics strong {
  margin-top: 7px;
  font: 600 18px/1 var(--display);
}

.quote-preview-meter {
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.quote-preview-meter i {
  display: block;
  width: 63%;
  height: 100%;
  border-radius: inherit;
  background: var(--acid);
}

@media (max-width: 760px) {
  .space-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Experience Creator */
[hidden] {
  display: none !important;
}

.nav-link-featured {
  border: 1px solid rgba(223, 255, 79, 0.18);
  background: rgba(223, 255, 79, 0.05);
}

.nav-link-featured span {
  color: var(--acid);
}

.creator-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(91, 114, 255, 0.16), transparent 28%),
    var(--ink);
  padding: 100px clamp(28px, 5vw, 88px) 112px;
  color: var(--white);
}

.creator-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
}

.creator-heading,
.creator-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.creator-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 54px;
}

.creator-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.creator-heading > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.75;
}

.creator-shell {
  display: grid;
  grid-template-columns: minmax(310px, 390px) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 22px;
  background: rgba(21, 23, 28, 0.88);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.creator-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--border-dark);
  padding: 28px;
}

.creator-form-header,
.workspace-toolbar,
.creator-divider,
.ai-status,
.workspace-actions {
  display: flex;
  align-items: center;
}

.creator-form-header,
.workspace-toolbar {
  justify-content: space-between;
}

.creator-step {
  color: rgba(255, 255, 255, 0.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ai-status {
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
}

.ai-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.ai-status.ready i {
  background: var(--acid);
  box-shadow: 0 0 12px rgba(223, 255, 79, 0.7);
}

.ai-status.demo i {
  background: var(--blue);
  box-shadow: 0 0 12px rgba(91, 114, 255, 0.7);
}

.creator-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.creator-field > span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.creator-field input,
.creator-field textarea,
.creator-field select {
  width: 100%;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px 14px;
  color: var(--white);
  font: 500 13px/1.55 var(--body);
  transition: border-color 180ms ease, background 180ms ease;
}

.creator-field select {
  min-height: 45px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.5) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.creator-field textarea {
  resize: vertical;
}

.creator-field-large textarea {
  min-height: 122px;
}

.creator-field input:focus,
.creator-field textarea:focus,
.creator-field select:focus {
  border-color: rgba(223, 255, 79, 0.6);
  background: rgba(255, 255, 255, 0.07);
}

.creator-field input::placeholder,
.creator-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.creator-field small {
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
}

.creator-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.creator-divider {
  gap: 12px;
  margin: 4px 0 -2px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creator-divider i {
  height: 1px;
  flex: 1;
  background: var(--border-dark);
}

.creator-submit {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 10px;
  margin-top: 4px;
  background: var(--acid);
  padding: 0 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, filter 180ms ease;
}

.creator-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.creator-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.creator-error {
  min-height: 16px;
  margin: -6px 0 0;
  color: #ff8a8a;
  font-size: 11px;
  line-height: 1.5;
}

.creator-workspace {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #0b0c0f;
}

.workspace-toolbar {
  min-height: 70px;
  gap: 24px;
  border-bottom: 1px solid var(--border-dark);
  padding: 12px 20px;
}

.workspace-toolbar > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.workspace-mode {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-actions {
  gap: 8px;
}

.workspace-actions button {
  min-height: 38px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
}

.workspace-actions button:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.workspace-actions .download-button {
  border-color: rgba(223, 255, 79, 0.25);
  color: var(--acid);
}

.workspace-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.34;
}

.canvas-stage {
  position: relative;
  display: grid;
  width: min(76%, 720px);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  margin: 36px auto 24px;
  background:
    linear-gradient(135deg, rgba(91, 114, 255, 0.16), transparent 48%),
    #111318;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  transition: aspect-ratio 240ms ease, width 240ms ease;
}

.canvas-stage[data-format="portrait"] {
  width: min(60%, 580px);
  aspect-ratio: 4 / 5;
}

.canvas-stage[data-format="landscape"] {
  width: min(88%, 880px);
  aspect-ratio: 16 / 9;
}

.canvas-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.canvas-placeholder,
.canvas-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding: clamp(24px, 6%, 56px);
  background:
    radial-gradient(circle at 75% 24%, rgba(223, 255, 79, 0.16), transparent 16%),
    linear-gradient(145deg, transparent 40%, rgba(91, 114, 255, 0.2));
}

.canvas-placeholder::before {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 28%;
  aspect-ratio: 1;
  border: 1px solid rgba(223, 255, 79, 0.46);
  border-radius: 50%;
  content: "";
  box-shadow:
    -40px 60px 0 -18px rgba(91, 114, 255, 0.55),
    0 0 70px rgba(223, 255, 79, 0.08);
}

.canvas-placeholder span {
  margin-bottom: 18px;
  color: var(--acid);
  font: 700 9px/1 var(--body);
  letter-spacing: 0.18em;
}

.canvas-placeholder strong {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 68px);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.canvas-placeholder p,
.canvas-loading p {
  max-width: 280px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.5;
}

.canvas-loading {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.canvas-loading strong {
  font: 600 clamp(15px, 2vw, 20px)/1.3 var(--display);
}

.loading-orbit {
  position: relative;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(223, 255, 79, 0.25);
  border-radius: 50%;
  margin-bottom: 22px;
  animation: creator-spin 1.4s linear infinite;
}

.loading-orbit::after {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
  content: "";
}

.workspace-note {
  margin: auto 20px 20px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

@keyframes creator-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .creator-shell {
    grid-template-columns: 340px minmax(0, 1fr);
  }

  .canvas-stage {
    width: min(84%, 620px);
  }
}

@media (max-width: 900px) {
  .creator-section {
    padding-top: 104px;
  }

  .creator-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .creator-shell {
    grid-template-columns: 1fr;
  }

  .creator-form {
    border-right: 0;
    border-bottom: 1px solid var(--border-dark);
  }

  .creator-workspace {
    min-height: 620px;
  }
}

@media (max-width: 680px) {
  .creator-section {
    padding: 92px 16px 72px;
  }

  .creator-heading {
    margin-bottom: 36px;
  }

  .creator-heading h2 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .creator-shell {
    border-radius: 14px;
  }

  .creator-form {
    padding: 22px 18px;
  }

  .creator-field-row {
    grid-template-columns: 1fr;
  }

  .workspace-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .workspace-actions,
  .workspace-actions button {
    width: 100%;
  }

  .canvas-stage,
  .canvas-stage[data-format="portrait"],
  .canvas-stage[data-format="landscape"] {
    width: calc(100% - 32px);
    margin-top: 22px;
  }
}
