:root {
  color-scheme: light;
  --page: #ffffff;
  --paper: #fffef9;
  --ink: #171717;
  --muted: #646464;
  --line: #171717;
  --soft-line: #deded8;
  --shadow-solid: 5px 6px 0 #171717;
  --button-shadow: 7px 8px 0 #171717;
  --radius: 8px;
  --content: 1180px;
  --rainbow: linear-gradient(90deg, #ff5268, #ff9e38, #ffe45e, #52d98a, #50bfff, #8c70ef, #ed68b8);
  --demo-surface: #fffef9;
  --demo-sidebar: #f5f5ef;
  --demo-ink: #171717;
  --demo-muted: #646464;
  --demo-line: #171717;
  --demo-soft-line: #deded8;
  --demo-shadow: 5px 6px 0 #171717;
  --header-height: 68px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

[data-theme="dark"] {
  color-scheme: dark;
  --page: #0b0b0c;
  --paper: #151517;
  --ink: #f7f7f2;
  --muted: #aaa9a2;
  --line: #f7f7f2;
  --soft-line: #343438;
  --shadow-solid: 5px 6px 0 #f7f7f2;
  --button-shadow: 7px 8px 0 #f7f7f2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  overflow-x: clip;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button {
  color: inherit;
}

svg {
  display: block;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

:focus-visible {
  outline: 3px solid #50bfff;
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: var(--header-height);
  background: color-mix(in srgb, var(--page) 94%, transparent);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  text-decoration: none;
}

.site-brand__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rainbow-mark {
  display: inline-grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  font-size: 24px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-nav a {
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--button-shadow);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.icon-button {
  width: 42px;
  padding: 0;
  box-shadow: 3px 4px 0 var(--line);
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.theme-icon__light,
.theme-icon__dark,
.theme-icon__system {
  display: none;
}

[data-theme-preference="light"] .theme-icon__light,
[data-theme-preference="dark"] .theme-icon__dark,
[data-theme-preference="system"] .theme-icon__system {
  display: block;
}

.button {
  gap: 8px;
  padding: 8px 16px;
  font-weight: 800;
}

.icon-button:hover,
.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 10px 0 var(--line);
}

.icon-button:hover {
  box-shadow: 5px 6px 0 var(--line);
}

.icon-button:active,
.button:active {
  transform: translate(4px, 5px);
  box-shadow: 2px 2px 0 var(--line);
}

.menu-icon__close,
[data-menu-toggle][aria-expanded="true"] .menu-icon__open {
  display: none;
}

[data-menu-toggle][aria-expanded="true"] .menu-icon__close {
  display: block;
}

.menu-toggle {
  display: none;
}

main {
  min-height: calc(100vh - 180px);
  padding-top: var(--header-height);
}

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

.landing-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  width: min(calc(100% - 40px), var(--content));
  min-height: calc(100vh - var(--header-height) - 46px);
  margin-inline: auto;
  padding-block: clamp(40px, 7vh, 74px);
  background: var(--page);
}

.landing-hero::before {
  content: none;
}

[data-prism-canvas] {
  position: absolute;
  z-index: 1;
  inset: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
}

[data-shader-state="running"] [data-prism-canvas] {
  opacity: 1;
}

[data-shader-state="fallback"] [data-prism-canvas] {
  display: none;
}

[data-shader-state="fallback"] {
  background:
    radial-gradient(120% 70% at 72% 110%, transparent 48%, rgb(239 68 68 / 20%) 49% 53%, rgb(245 158 11 / 18%) 54% 58%, rgb(132 204 22 / 16%) 59% 63%, rgb(6 182 212 / 15%) 64% 68%, rgb(139 92 246 / 14%) 69% 73%, transparent 74%),
    var(--page);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.editorial-kicker,
.section-index,
.feature-label {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.editorial-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.editorial-kicker span {
  padding: 4px 7px;
  color: #171717;
  background: #ffe45e;
  border: 2px solid var(--line);
  transform: rotate(-2deg);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(52px, 6.2vw, 92px);
  font-weight: 950;
  line-height: .88;
  letter-spacing: 0;
}

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

.hero-rainbow-word {
  width: fit-content;
  margin-top: 8px;
  color: transparent;
  background: var(--rainbow);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px var(--ink);
  filter: drop-shadow(3px 3px 0 var(--paper));
}

.hero-lede {
  max-width: 580px;
  margin: 28px 0 24px;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions,
.community-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-rainbow {
  color: #ffffff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 55%);
  background-image: linear-gradient(90deg, #ef4444, #f97316, #f59e0b, #84cc16, #06b6d4, #8b5cf6, #ec4899, #ef4444);
  background-size: 200% 100%;
  animation: rainbow-slide 6s linear infinite;
}

.button-plain {
  background: var(--paper);
}

.hero-github-link {
  padding: 8px 4px;
  font-weight: 800;
}

.hero-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.agent-demo {
  --ink: var(--demo-ink);
  --muted: var(--demo-muted);
  --line: var(--demo-line);
  --soft-line: var(--demo-soft-line);
  color: var(--demo-ink);
  min-width: 0;
  overflow: hidden;
  background: var(--demo-surface);
  border: 2px solid var(--demo-line);
  border-radius: var(--radius);
  box-shadow: var(--demo-shadow);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}

.demo-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 7px 9px 7px 14px;
  border-bottom: 2px solid var(--line);
}

.demo-window-title,
.demo-window-dots,
.demo-video-button,
.demo-sidebar-brand,
.demo-chat-header > div,
.demo-active-tag,
.audio-card-heading,
.audio-time {
  display: flex;
  align-items: center;
}

.demo-window-title {
  min-width: 0;
  gap: 10px;
  font-size: 13px;
}

.demo-window-title strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-window-dots {
  gap: 4px;
}

.demo-window-dots i {
  width: 8px;
  height: 8px;
  background: #ff5268;
  border: 1px solid #171717;
  border-radius: 50%;
}

.demo-window-dots i:nth-child(2) { background: #ffe45e; }
.demo-window-dots i:nth-child(3) { background: #52d98a; }

.demo-video-button {
  flex: 0 0 auto;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 6px 12px;
  color: #171717;
  background: #ffe45e;
  border: 2px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 4px 5px 0 var(--line);
  transition: transform .16s ease, box-shadow .16s ease;
}

.demo-video-button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 7px 0 var(--line);
}

.demo-video-button:active {
  transform: translate(2px, 3px);
  box-shadow: 2px 2px 0 var(--line);
}

.demo-video-button svg {
  width: 17px;
  height: 17px;
}

.demo-workspace {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  min-height: 500px;
}

.demo-sidebar {
  padding: 16px 10px;
  color: var(--muted);
  background: var(--demo-sidebar);
  border-right: 1px solid var(--soft-line);
  font-size: 10px;
}

.demo-sidebar-brand {
  gap: 7px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.demo-sidebar-brand span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #171717;
  background: #50bfff;
  border: 1px solid #171717;
  border-radius: 5px;
  font-size: 9px;
}

.demo-new-chat {
  margin-bottom: 18px;
  padding: 7px;
  color: var(--ink);
  border: 1px solid var(--soft-line);
  border-radius: 5px;
  font-weight: 800;
}

.demo-sidebar p {
  margin: 12px 6px 4px;
}

.demo-session {
  overflow: hidden;
  padding: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-session.is-active {
  color: var(--ink);
  background: color-mix(in srgb, #50bfff 14%, var(--demo-surface));
  border-left: 3px solid #50bfff;
  border-radius: 3px;
}

.demo-chat {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--demo-surface);
}

.demo-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--soft-line);
}

.demo-chat-header > div {
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.35;
}

.demo-chat-header strong {
  font-size: 13px;
}

.demo-model-copy {
  color: var(--muted);
  font-size: 10px;
}

.demo-active-tag {
  flex: 0 0 auto;
  gap: 5px;
  padding: 4px 7px;
  color: #145d38;
  background: #d9f8e7;
  border: 1px solid #52d98a;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
}

.demo-active-tag i {
  width: 6px;
  height: 6px;
  background: #20aa61;
  border-radius: 50%;
}

.demo-thread {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  padding: 18px 16px 14px;
}

.demo-turn {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
}

.demo-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #171717;
  border: 1px solid #171717;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 900;
}

.demo-avatar-user { background: #ffe45e; }
.demo-avatar-agent { background: #aee8ff; }

.demo-message {
  min-width: 0;
  font-size: 11px;
  line-height: 1.55;
}

.demo-message > strong {
  font-size: 11px;
}

.demo-message p {
  margin: 4px 0 0;
}

.demo-turn-user .demo-message p {
  width: fit-content;
  padding: 7px 10px;
  background: color-mix(in srgb, #50bfff 14%, var(--demo-surface));
  border: 1px solid var(--soft-line);
  border-radius: 4px;
}

.rainbow-audio-card {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  width: min(100%, 360px);
  margin-top: 10px;
  padding: 11px;
  color: #171717;
  background: #fffef9;
  border: 2px solid #171717;
  border-radius: 6px;
  box-shadow: 3px 3px 0 #171717;
}

.rainbow-audio-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: var(--rainbow);
}

.audio-play-button {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  align-self: center;
  padding: 0;
  color: #171717;
  background: #ffe45e;
  border: 2px solid #171717;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 3px 4px 0 #171717;
  transition: transform .16s ease, box-shadow .16s ease;
}

.audio-play-button::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid rgb(255 228 94 / 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: scale(.8);
}

.audio-play-button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 6px 0 #171717;
}

.audio-play-button:active {
  transform: translate(2px, 3px);
  box-shadow: 1px 1px 0 #171717;
}

.audio-play-button svg {
  width: 17px;
  height: 17px;
  margin-left: 2px;
}

.audio-card-body {
  min-width: 0;
}

.audio-card-heading {
  justify-content: space-between;
  gap: 8px;
}

.audio-card-heading strong {
  font-size: 11px;
}

.audio-card-heading span {
  color: #646464;
  font-size: 8px;
  font-weight: 800;
}

.rainbow-audio-card p {
  margin: 2px 0 7px;
  font-size: 9px;
  line-height: 1.35;
}

.audio-progress {
  height: 3px;
  overflow: hidden;
  background: #deded8;
  border-radius: 3px;
}

.audio-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: #171717;
  transition: width .25s linear;
}

.audio-time {
  justify-content: space-between;
  margin-top: 3px;
  color: #646464;
  font-size: 8px;
  line-height: 1;
}

.demo-audio-credit {
  width: min(100%, 360px);
  margin: 6px 0 0;
  color: #646464;
  font-size: 9px;
  line-height: 1.4;
}

.demo-audio-credit a {
  color: #171717;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.demo-composer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin: 0 14px 14px;
  padding: 7px 8px 7px 11px;
  color: var(--muted);
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  font-size: 10px;
}

.demo-composer i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #ffffff;
  background: #171717;
  border-radius: 5px;
  font-style: normal;
}

.demo-video-state {
  min-height: 500px;
}

.demo-video-media {
  display: block;
  width: 100%;
  min-height: 500px;
  background: #171717;
  object-fit: contain;
}

@keyframes demo-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes demo-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes demo-pop {
  from { opacity: 0; transform: scale(.94); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes demo-pulse {
  0% { opacity: 1; transform: scale(.8); }
  100% { opacity: 0; transform: scale(1.4); }
}

@keyframes rainbow-slide {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes sound-bounce {
  from { transform: scaleY(.5); }
  to { transform: scaleY(1); }
}

.demo-is-animating [data-demo-stage="user"] { animation: demo-rise .35s .35s both; }
.demo-is-animating [data-demo-stage="assistant"] { animation: demo-rise .5s .75s both; }
.demo-is-animating [data-demo-stage="audio"] { animation: demo-pop .4s 1.9s both; }
.demo-is-animating [data-audio-toggle]::after { animation: demo-pulse .5s 2.3s 1; }

.demo-audio-focused .demo-workspace :is(.demo-sidebar, .demo-chat-header, .demo-composer, .demo-turn-user, .demo-avatar),
.demo-audio-focused .demo-turn-assistant .demo-message > p,
.demo-audio-focused .demo-turn-assistant .demo-message > strong {
  opacity: .45;
}

.demo-workspace :is(.demo-sidebar, .demo-chat-header, .demo-composer, .demo-turn-user, .demo-avatar),
.demo-turn-assistant .demo-message > p,
.demo-turn-assistant .demo-message > strong {
  transition: opacity .6s ease;
}

.demo-audio-focused .rainbow-audio-card {
  opacity: 1;
  transform: translateY(0);
}

.agent-demo [hidden] {
  display: none !important;
}

.rainbow-ticker {
  width: 100%;
  overflow: hidden;
  color: #171717;
  background-image: linear-gradient(90deg, #ff5268, #ff9e38, #ffe45e, #52d98a, #50bfff, #8c70ef, #ed68b8, #ff5268);
  background-size: 200% 100%;
  animation: rainbow-slide 12s linear infinite;
  border-block: 2px solid var(--line);
}

.rainbow-ticker > div {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 46px;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  animation: marquee-scroll 32s linear infinite reverse;
}

.rainbow-ticker span,
.rainbow-ticker i {
  padding-inline: clamp(14px, 2vw, 30px);
  font-style: normal;
}

.feature-editorial {
  padding-top: clamp(76px, 10vw, 132px);
}

.feature-intro {
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 64px;
}

.section-index {
  padding-top: 10px;
  color: var(--muted);
}

.feature-intro .section-index,
.install-heading .section-index {
  display: inline-block;
  padding: 5px 9px;
  color: #171717;
  background: #ffe45e;
  border: 2px solid var(--line);
  box-shadow: 3px 4px 0 var(--line);
  transform: rotate(-2deg);
}

.feature-intro h2,
.quick-install h2,
.voice-community h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 2px solid var(--line);
}

.feature-band {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 42px clamp(22px, 3vw, 46px) 38px;
  border-left: 2px solid var(--line);
}

.feature-band:first-child {
  border-left: 0;
}

.feature-band-lead {
  background: color-mix(in srgb, #ffe45e 22%, var(--page));
}

.feature-band-token {
  background: color-mix(in srgb, #50bfff 15%, var(--page));
}

.feature-band-voice {
  background: color-mix(in srgb, #ed68b8 13%, var(--page));
}

.feature-number {
  color: transparent;
  font-size: clamp(52px, 5vw, 84px);
  font-weight: 950;
  line-height: 1;
  -webkit-text-stroke: 2px var(--ink);
}

.feature-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.feature-copy > p:last-child {
  margin: 0;
  font-size: 15px;
}

.feature-sound {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 72px;
  margin-top: auto;
}

.feature-sound i {
  width: 7px;
  height: 34%;
  background: var(--ink);
  border-radius: 2px;
  animation: sound-bounce 1s ease-in-out infinite alternate;
}

.feature-sound i:nth-child(2), .feature-sound i:nth-child(6) { height: 60%; animation-delay: .12s; }
.feature-sound i:nth-child(3), .feature-sound i:nth-child(5) { height: 88%; animation-delay: .24s; }
.feature-sound i:nth-child(4) { height: 100%; background: #ff5268; animation-delay: .36s; }

.feature-band-voice > a {
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 3px;
  font-weight: 900;
}

.quick-install {
  padding-block: clamp(80px, 11vw, 140px);
  background: var(--paper);
}

.quick-install-inner {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(400px, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
}

.install-heading {
  min-width: 0;
}

.install-heading .button {
  margin-top: 34px;
}

.install-tabs {
  min-width: 0;
}

.install-tablist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
  background: color-mix(in srgb, var(--ink) 6%, var(--paper));
  border: 2px solid var(--line);
  border-radius: 8px;
}

.install-tablist button {
  min-height: 44px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-weight: 900;
  cursor: pointer;
}

.install-tablist button[aria-selected="true"] {
  color: #ffffff;
  background: var(--ink);
}

.install-panel {
  margin-top: 18px;
  animation: demo-fade .35s ease;
}

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

.install-prompt.code-block {
  padding: 22px;
  color: var(--ink);
  background: color-mix(in srgb, #8b5cf6 8%, var(--paper));
  border: 2px solid var(--line);
  border-radius: 8px;
}

.install-prompt__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.install-prompt__heading > strong {
  font-size: 18px;
}

.install-prompt .button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 6px 11px;
  font-size: 12px;
}

.install-prompt .button.is-copy-success {
  color: #145d38;
  background: #d9f8e7;
  border-color: #20aa61;
  box-shadow: 4px 5px 0 #20aa61;
}

.install-prompt .button.is-copy-success::before {
  content: "✓";
  font-size: 16px;
}

.install-prompt pre {
  overflow-x: auto;
  margin: 0;
  padding: 16px;
  color: var(--ink);
  background: var(--page);
  border: 2px solid var(--line);
  border-radius: 6px;
  box-shadow: 4px 5px 0 #8c70ef;
  white-space: pre-wrap;
}

.install-prompt code {
  font-size: 12px;
  line-height: 1.7;
}

.install-prompt small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.install-heading > p:not(.section-index) {
  max-width: 430px;
  margin: 24px 0;
  color: var(--muted);
  font-weight: 700;
}

.install-heading .section-index,
.voice-community .section-index {
  margin-bottom: 20px;
}

.install-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--line);
}

.install-steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 2px solid var(--line);
}

.install-steps li > span {
  color: transparent;
  font-size: 22px;
  font-weight: 950;
  -webkit-text-stroke: 2px var(--ink);
}

.install-steps strong,
.install-steps code {
  display: block;
}

.install-steps small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 700;
}

.install-steps code,
.install-custom-path code {
  overflow-x: auto;
  margin-top: 6px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--page);
  border: 1px solid var(--soft-line);
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
}

.install-custom-path {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 5px solid #8c70ef;
  background: color-mix(in srgb, #8c70ef 10%, var(--page));
}

.install-custom-path strong,
.install-custom-path code {
  display: block;
}

.voice-community {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 12vw, 150px);
  color: #171717;
  background: #ffe45e;
  border-block: 2px solid #171717;
}

.community-ticker {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 46px;
  color: #ffe45e;
  background: #171717;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .02em;
}

.community-ticker > div {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
  animation: marquee-scroll 26s linear infinite;
}

.community-ticker span,
.community-ticker i {
  padding-inline: 15px;
  font-style: normal;
}

.voice-community-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: end;
}

.voice-community .section-index {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 10px;
  color: #ffe45e;
  background: #171717;
  box-shadow: 4px 5px 0 #ffffff;
  transform: rotate(-2deg);
}

.voice-community h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0.09em 0.11em 0 #ffffff;
}

.rainbow-shout {
  display: inline-block;
  color: transparent;
  background: var(--rainbow);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px var(--ink);
  filter: drop-shadow(4px 4px 0 var(--ink));
  text-shadow: none;
}

.voice-community .rainbow-shout {
  -webkit-text-stroke-color: #171717;
  filter: drop-shadow(4px 4px 0 #171717);
  transform: rotate(-1.5deg);
}

.community-copy > p {
  margin: 0 0 28px;
  color: #171717;
  font-size: 17px;
  font-weight: 800;
}

.community-copy code {
  padding: 2px 6px;
  color: #171717;
  background: #fffef9;
  border: 1px solid #171717;
  border-radius: 3px;
}

.voice-community .button {
  border-color: #171717;
  color: #171717;
}

.voice-community .button-rainbow {
  box-shadow: 7px 8px 0 #171717;
}

.voice-community .button-rainbow:hover {
  box-shadow: 9px 10px 0 #171717;
}

.voice-community .button-rainbow:active {
  box-shadow: 2px 2px 0 #171717;
}

.voice-community .button-plain {
  background: #fffef9;
  box-shadow: 7px 8px 0 #171717;
}

.voice-community .button-plain:hover {
  box-shadow: 9px 10px 0 #171717;
}

.voice-community .button-plain:active {
  box-shadow: 2px 2px 0 #171717;
}

.startup-note {
  padding-block: clamp(28px, 5vw, 52px);
}

.startup-note .doc-signoff {
  margin: 0;
}

.site-footer {
  margin-top: 0;
  border-top: 2px solid var(--line);
  background: var(--paper);
}

/* Documentation reading surface */
.reading-progress {
  position: absolute;
  inset: auto 0 -2px;
  height: 4px;
  background: var(--rainbow);
  transform: scaleX(0);
  transform-origin: left center;
}

.doc-menu-toggle {
  display: none;
  min-height: 38px;
  padding: 5px 10px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 3px 4px 0 var(--line);
  transition: transform .16s ease, box-shadow .16s ease;
}

.docs-main {
  padding-top: var(--header-height);
}

.docs-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(48px, 7vw, 96px);
  justify-content: center;
  padding-block: 54px 110px;
  align-items: start;
}

.docs-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
  max-height: calc(100vh - var(--header-height) - 48px);
  overflow-y: auto;
  border-top: 2px solid var(--line);
}

.docs-sidebar__label {
  margin: 0;
  padding: 16px 10px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.docs-sidebar nav,
.doc-chapters-mobile {
  display: flex;
  flex-direction: column;
}

.docs-sidebar a {
  padding: 6px 10px;
  color: var(--muted);
  border-left: 3px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.docs-sidebar a:hover,
.docs-sidebar a[aria-current="location"] {
  color: var(--ink);
  border-left-color: #50bfff;
  background: color-mix(in srgb, #50bfff 10%, transparent);
}

.docs-content {
  min-width: 0;
}

.docs-content section {
  padding: 40px 0 46px;
  scroll-margin-top: calc(var(--header-height) + 18px);
  border-bottom: 1px solid var(--soft-line);
}

.docs-content section:first-child {
  padding-top: 10px;
}

.docs-eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.docs-content h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.docs-content h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: 0;
}

.docs-content h3 {
  margin: 32px 0 16px;
  font-size: 21px;
  font-weight: 900;
}

.docs-content p,
.docs-content li {
  max-width: 72ch;
}

.docs-lede {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 650;
}

.docs-content :not(pre) > code {
  padding: 2px 5px;
  background: color-mix(in srgb, #50bfff 10%, var(--paper));
  border: 1px solid var(--soft-line);
  border-radius: 3px;
  font-size: .88em;
  overflow-wrap: anywhere;
}

.doc-notice,
.doc-signoff {
  margin: 22px 0;
  padding: 17px 19px;
  background: color-mix(in srgb, #ffe45e 16%, var(--paper));
  border-left: 5px solid #ffe45e;
}

.doc-notice--neutral {
  background: var(--paper);
  border-left-color: #50bfff;
}

.doc-notice ul {
  margin-bottom: 0;
}

.doc-figure {
  margin: 22px 0;
  padding: 14px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 6px;
  box-shadow: 5px 6px 0 var(--line);
}

.doc-figure img {
  display: block;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  border: 1px solid var(--soft-line);
  border-radius: 4px;
}

.doc-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.code-block {
  margin: 22px 0;
  overflow: hidden;
  color: #f7f7f2;
  background: #171717;
  border: 2px solid var(--line);
  border-radius: 6px;
}

.code-block__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 5px 8px 5px 14px;
  color: #cacac4;
  border-bottom: 1px solid #424242;
  font: 700 12px/1.2 "SFMono-Regular", Consolas, monospace;
}

.code-block__bar button {
  min-width: 64px;
  min-height: 30px;
  padding: 3px 9px;
  color: #f7f7f2;
  background: #282828;
  border: 1px solid #686868;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 3px 4px 0 #f7f7f2;
  transition: transform .16s ease, box-shadow .16s ease;
}

.doc-menu-toggle:hover,
.code-block__bar button:hover {
  transform: translate(-1px, -1px);
}

.doc-menu-toggle:hover {
  box-shadow: 5px 6px 0 var(--line);
}

.code-block__bar button:hover {
  box-shadow: 5px 6px 0 #f7f7f2;
}

.doc-menu-toggle:active,
.code-block__bar button:active {
  transform: translate(2px, 3px);
  box-shadow: 1px 1px 0 currentColor;
}

.code-block pre {
  margin: 0;
  padding: 18px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.65;
}

.code-block code {
  white-space: pre;
}

.command-table {
  margin: 22px 0;
  border: 1px solid var(--soft-line);
}

.command-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.command-table th,
.command-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--soft-line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.command-table th:first-child,
.command-table td:first-child {
  width: 31%;
}

.command-table th {
  background: var(--paper);
  font-size: 13px;
}

.doc-steps,
.publish-steps {
  padding: 0;
  list-style: none;
}

.doc-steps li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--soft-line);
}

.file-tree {
  margin: 22px 0;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--soft-line);
  border-left: 5px solid #52d98a;
}

.file-tree code {
  white-space: pre-wrap;
}

.file-tree span {
  color: var(--muted);
}

.limit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  padding: 1px;
  background: var(--soft-line);
  list-style: none;
}

.limit-grid li {
  min-width: 0;
  padding: 16px;
  background: var(--page);
  color: var(--muted);
  font-size: 13px;
}

.limit-grid strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
}

.publish-steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--soft-line);
}

.publish-steps li > span {
  color: #ff5268;
  font-weight: 950;
}

.publish-steps p {
  margin: 2px 0 0;
  color: var(--muted);
}

.doc-signoff {
  margin: 28px 0;
  padding: 26px 28px;
  color: #f7f7f2;
  background:
    radial-gradient(70% 140% at 10% 120%, rgb(237 104 184 / 30%) 0 40%, transparent 41%),
    radial-gradient(70% 140% at 92% -30%, rgb(80 191 255 / 30%) 0 42%, transparent 43%),
    #171717;
  border: 2px solid #171717;
  border-left: 7px solid #ed68b8;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 6px 7px 0 #ed68b8;
}

.doc-signoff a {
  color: #50bfff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.doc-signoff::before {
  content: "✦ FROM THE MAKER";
  display: block;
  margin-bottom: 8px;
  color: #ffe45e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .06em;
}

.doc-credits {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 26px;
  margin: 22px 0;
  padding: 17px 19px 17px 28px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 6px;
  box-shadow: 5px 6px 0 var(--line);
  overflow: hidden;
}

.doc-credits::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--rainbow);
}

.doc-credits__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.doc-credits__item + .doc-credits__item {
  border-left: 1px dashed var(--soft-line);
  padding-left: 26px;
}

.doc-credits__mark {
  font-size: 24px;
  line-height: 1.2;
}

.doc-credits__body p {
  margin: 0;
}

.doc-credits__body .doc-credits__label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .06em;
}

.doc-chapters-mobile {
  display: none;
}

@media (max-width: 1040px) {
  .landing-hero {
    grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
    gap: 26px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 6vw, 68px);
  }

  .hero-github-link {
    display: none;
  }

  .feature-band {
    grid-template-columns: 130px minmax(280px, 1fr) 130px;
  }
}

@media (max-width: 900px) {
  .landing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 60px 72px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-copy h1 {
    font-size: clamp(60px, 10vw, 90px);
  }

  .agent-demo {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .quick-install-inner,
  .voice-community-inner {
    grid-template-columns: 1fr;
  }

  .install-custom-path {
    grid-column: auto;
    margin: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    border-block: 0;
  }

  .feature-band {
    border-left: 0;
    border-top: 2px solid var(--line);
    padding: 38px clamp(24px, 6vw, 44px);
  }

  .feature-band:first-child {
    border-top: 0;
  }

  .feature-number {
    font-size: 58px;
  }

  .feature-sound {
    display: none;
  }
}

@media (max-width: 720px) {
  .landing-hero {
    width: min(calc(100% - 28px), var(--content));
    padding-block: 42px 56px;
  }

  .hero-copy h1 {
    font-size: clamp(47px, 15vw, 67px);
    line-height: .9;
  }

  .hero-rainbow-word {
    -webkit-text-stroke-width: 1.5px;
  }

  .rainbow-shout {
    -webkit-text-stroke-width: 1.5px;
  }

  .doc-credits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .doc-credits__item + .doc-credits__item {
    border-left: 0;
    border-top: 1px dashed var(--soft-line);
    padding-left: 0;
    padding-top: 14px;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .hero-github-link,
  .hero-note {
    display: none;
  }

  .demo-window-bar {
    padding-left: 10px;
  }

  .demo-window-title strong,
  .demo-window-dots {
    display: none;
  }

  .demo-window-title::after {
    content: "Agent Demo";
    font-weight: 900;
  }

  .demo-workspace {
    display: block;
    min-height: 0;
  }

  .demo-sidebar,
  .demo-model-copy,
  .demo-composer {
    display: none;
  }

  .demo-chat-header {
    padding-inline: 10px;
  }

  .demo-thread {
    gap: 14px;
    padding: 14px 10px 18px;
  }

  .demo-message {
    font-size: 11px;
  }

  .demo-turn-assistant .demo-message > p:nth-of-type(2) {
    display: none;
  }

  .rainbow-audio-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding: 10px 8px;
  }

  .audio-play-button {
    width: 34px;
    height: 34px;
  }

  .demo-video-state,
  .demo-video-media {
    min-height: 210px;
  }

  .feature-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 42px;
  }

  .feature-copy > p:last-child {
    font-size: 15px;
  }

  .quick-install-inner {
    gap: 46px;
  }

  .install-prompt__heading {
    align-items: stretch;
    flex-direction: column;
  }

  .install-prompt .button {
    align-self: flex-start;
  }
}

.site-footer::before {
  content: "";
  display: block;
  height: 7px;
  background-image: linear-gradient(90deg, #ff5268, #ff9e38, #ffe45e, #52d98a, #50bfff, #8c70ef, #ed68b8, #ff5268);
  background-size: 200% 100%;
  animation: rainbow-slide 14s linear infinite;
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-block: 44px 40px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 460px;
  min-width: 0;
}

.site-footer__brand .rainbow-mark {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  font-size: 27px;
  background: #fffef9;
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 4px 5px 0 var(--line);
}

.site-footer__brand strong {
  display: block;
  font-size: 16px;
}

.site-footer__brand p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer__brand a {
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: clamp(32px, 6vw, 72px);
  padding-top: 4px;
}

.footer-links__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
}

.footer-links__group h4 {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-links__group a {
  width: fit-content;
  font-weight: 800;
}

.footer-qr {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  padding-top: 4px;
}

.footer-qr img {
  display: block;
  width: 92px;
  height: 92px;
  margin-bottom: 10px;
  background: #fffef9;
  border: 2px solid var(--line);
  border-radius: 6px;
  box-shadow: 4px 5px 0 var(--line);
}

.footer-qr__title {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.footer-qr__name {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.site-footer__bottom {
  border-top: 2px solid var(--soft-line);
  padding-block: 15px;
}

.site-footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 28px;
}

.site-footer__bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

html.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

html.js .feature-grid [data-reveal]:nth-child(2) { --reveal-delay: .12s; }
html.js .feature-grid [data-reveal]:nth-child(3) { --reveal-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  html.js .menu-toggle {
    display: inline-flex;
  }

  html.js .site-nav {
    position: absolute;
    top: calc(100% + 2px);
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    background: var(--paper);
    border: 2px solid var(--line);
    box-shadow: var(--shadow-solid);
  }

  html.js .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 30px;
    padding-block: 36px 32px;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 24px;
    padding-top: 0;
  }

  .site-footer__bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .docs-page .site-brand__name {
    max-width: 150px;
  }

  html.js .docs-page .doc-menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  html.js .docs-page .menu-toggle {
    display: none;
  }

  .docs-page .doc-menu-toggle {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .docs-page .site-nav {
    display: none;
  }

  .docs-layout {
    display: block;
    padding-block: 28px 72px;
  }

  .docs-sidebar {
    display: none;
  }

  html.js .doc-chapters-mobile:not([hidden]) {
    position: fixed;
    z-index: 9;
    top: calc(var(--header-height) + 2px);
    right: 14px;
    left: 14px;
    display: flex;
    max-height: calc(100vh - var(--header-height) - 28px);
    overflow-y: auto;
    padding: 8px;
    background: var(--paper);
    border: 2px solid var(--line);
    box-shadow: var(--shadow-solid);
  }

  .doc-chapters-mobile a {
    padding: 8px 10px;
    font-weight: 700;
    text-decoration: none;
  }

  .docs-content h1 {
    font-size: 42px;
  }

  .docs-content section {
    padding-block: 34px;
  }

  .doc-steps li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .limit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .demo-is-animating [data-demo-stage],
  .demo-is-animating [data-audio-toggle],
  .demo-is-animating [data-audio-toggle]::after {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .button-rainbow,
  .rainbow-ticker,
  .rainbow-ticker > div,
  .community-ticker > div,
  .feature-sound i,
  .site-footer::before {
    animation: none;
  }
}
