:root {
  color-scheme: dark;
  --bg: #090a10;
  --panel: #101119;
  --line: #242530;
  --text: #ededf4;
  --muted: #9494a9;
  --purple: #b193f9;
  --amber: #ffd16b;
  --green: #86d8b0;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 5px;
}
::selection {
  background: #7444b9;
  color: white;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  color: inherit;
}
code,
pre,
kbd {
  font-family: var(--mono);
}
.wrap {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.page-grid {
  position: absolute;
  inset: 0 0 auto;
  height: 920px;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(#090a1000 60%, var(--bg)),
    linear-gradient(90deg, #8575c207 1px, transparent 1px),
    linear-gradient(#8575c207 1px, transparent 1px);
  background-size:
    100% 100%,
    64px 64px,
    64px 64px;
}
.scroll-progress {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #8756e0, var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #090a10ed;
  border-bottom: 1px solid #ffffff0c;
  backdrop-filter: blur(18px);
}
.nav-inner {
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  flex-shrink: 0;
}
.header nav {
  display: flex;
  gap: 31px;
  font-size: 12px;
  color: #b7b6c6;
}
.header nav a {
  transition: color 0.2s;
}
.header nav a:hover {
  color: var(--amber);
}
.header nav span {
  color: #797888;
}
.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.github-link {
  border: 1px solid #34323f;
  border-radius: 6px;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.github-link:hover {
  background: #191522;
  border-color: #8b65c5;
}
.motion-toggle {
  height: 30px;
  width: 30px;
  border: 1px solid #292833;
  background: transparent;
  color: #b6abc8;
  border-radius: 50%;
  font: 12px var(--mono);
}
.hero {
  padding-top: 35px;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  font: 9px var(--mono);
  letter-spacing: 1.1px;
  color: #aaa4bc;
}
.hero-topline > span:first-child {
  display: flex;
  gap: 9px;
  align-items: center;
}
.live-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 9px #86d8b044;
  flex-shrink: 0;
}
.hero-build {
  color: #9791a8;
}
.hero-build b {
  margin-inline: 10px;
  color: #6b576e;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  align-items: center;
  padding-top: 77px;
  padding-bottom: 75px;
  position: relative;
}
.hero-layout:before {
  content: "";
  position: absolute;
  left: 30%;
  right: -3%;
  top: -30%;
  bottom: -30%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse, #714ac117, transparent 65%);
}
h1 {
  font-size: clamp(50px, 5.2vw, 73px);
  font-weight: 550;
  letter-spacing: -4px;
  line-height: 1.08;
  margin: 0 0 29px;
  position: relative;
  white-space: nowrap;
}
h1 > span:first-of-type {
  background: linear-gradient(105deg, #c8b5ff, #9872e4 65%, #a594d1);
  background-clip: text;
  color: transparent;
}
.title-cursor {
  font-family: var(--mono);
  font-size: 58px;
  color: var(--amber);
  letter-spacing: -12px;
  animation: blink 1.3s step-end infinite;
}
h1 .title-cursor {
  display: inline-block;
  margin-left: 3px;
}
.hero-lead {
  font-size: 20px;
  line-height: 1.55;
  color: #e0dfe8;
  letter-spacing: -0.3px;
  margin: 0 0 17px;
}
.hero-description {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 430px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 31px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 5px;
  padding: 15px 19px;
  min-height: 46px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.primary {
  background: var(--amber);
  color: #18131f;
  box-shadow: 0 0 30px #ffc45c0a;
  border: 1px solid #ffe29a;
}
.primary:hover {
  background: #ffdd8d;
  transform: translateY(-3px);
  box-shadow: 0 3px 27px #ffc45c30;
}
.secondary {
  border: 1px solid #35313f;
  background: #15121c;
  color: #dfd8ec;
}
.secondary:hover {
  border-color: #9e7ad6;
  background: #211a2c;
  transform: translateY(-3px);
}
.hero-platforms {
  display: flex;
  gap: 13px;
  font: 9px var(--mono);
  color: #aba4b9;
  margin-top: 24px;
}
.platform-divider {
  color: #706a7c;
  margin-inline: 3px;
}
.signal-map {
  height: 400px;
  position: relative;
  margin-right: -20px;
  margin-left: -15px;
  isolation: isolate;
}
.signal-grid {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse, #9a73ec14, transparent 65%);
}
.signal-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.signal-packets {
  stroke-dasharray: 16 460;
  stroke-width: 2;
  animation: packet 7s linear infinite;
}
.signal-packets path:nth-child(2) {
  stroke-dasharray: 24 440;
  animation: packet 5s linear infinite reverse;
}
.core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 148px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #222031, #100e1a);
  border: 1px solid #78619f;
  border-radius: 22px;
  box-shadow:
    0 0 70px #8d4bdd22,
    0 0 0 9px #9871d805;
  z-index: 2;
  animation: core-float 6s ease-in-out infinite;
}
.core img {
  width: 83px;
  height: 83px;
}
.core > span {
  font: 10px var(--mono);
  color: #c8b8e2;
  margin-top: 8px;
  letter-spacing: 3px;
}
.core-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 242px;
  height: 242px;
  border: 1px dashed #5b437f60;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit 50s linear infinite;
}
.core-orbit:after {
  content: "";
  position: absolute;
  top: 24px;
  left: 38px;
  width: 5px;
  height: 5px;
  background: var(--amber);
  box-shadow: 0 0 15px #ffd16b88;
  border-radius: 50%;
}
.map-label {
  position: absolute;
  font: 9px var(--mono);
  letter-spacing: 0.4px;
  padding: 9px 11px;
  background: #101018;
  border: 1px solid #332b45;
  border-radius: 4px;
  color: #c2b3d8;
  z-index: 3;
}
.map-terminal {
  top: 17%;
  left: 0;
}
.map-scripts {
  top: 46%;
  left: 0;
}
.map-agents {
  bottom: 17%;
  left: 0;
}
.map-courses {
  top: 17%;
  right: 0;
  color: #b7a18a;
  border-color: #423322;
}
.map-grades {
  top: 46%;
  right: 0;
  color: #b7a18a;
  border-color: #423322;
}
.map-users {
  bottom: 17%;
  right: 0;
  color: #b7a18a;
  border-color: #423322;
}
.signal-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: #a99cbe;
  font: 8px var(--mono);
  letter-spacing: 1.3px;
}
.hero-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font: 8px var(--mono);
  letter-spacing: 1px;
  color: #9490a4;
}
.hero-bottom a span {
  margin-left: 12px;
  color: var(--amber);
}
.console-section {
  padding-top: 65px;
}
.section-index {
  display: flex;
  align-items: center;
  gap: 22px;
  font: 9px var(--mono);
  letter-spacing: 1.5px;
  color: #a293b8;
}
.section-index > span:last-child:not(:first-child) {
  color: #8c859b;
  font-size: 8px;
}
.index-line {
  height: 1px;
  background: var(--line);
  flex: 1;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin: 30px 0;
}
h2 {
  font-size: 47px;
  line-height: 1.13;
  font-weight: 500;
  letter-spacing: -2px;
  margin: 0;
}
h2 > span {
  color: #90859f;
}
.section-heading > p,
.coverage-intro > p,
.architecture-heading > p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0 0 5px;
}
.workbench {
  position: relative;
  border: 1px solid #4d3b635e;
  border-radius: 9px;
  overflow: hidden;
  background: #0d0e16;
  box-shadow:
    0 0 90px #7030cf0a,
    0 22px 80px #00000030;
}
.workbench:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #aa77f8, transparent);
  opacity: 0.8;
}
.workbench-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 19px;
  background: #16141e;
  border-bottom: 1px solid #292333;
  color: #aea5bd;
  font: 9px var(--mono);
}
.window-dots {
  display: flex;
  gap: 6px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #786482;
}
.window-dots i:nth-child(2) {
  background: #99866a;
}
.window-dots i:nth-child(3) {
  background: #6e907e;
}
.demo-badge {
  font-size: 7px;
  letter-spacing: 0.8px;
  color: #a299b1;
}
.demo-badge i {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
  margin-right: 5px;
}
.workbench-main {
  display: grid;
  grid-template-columns: 265px 1fr;
}
.workflow-sidebar {
  border-right: 1px solid #292333;
  background: #111019;
  padding: 24px 10px 15px;
  display: flex;
  flex-direction: column;
}
.sidebar-heading {
  font: 8px var(--mono);
  letter-spacing: 1px;
  color: #aaa0b9;
  margin: 0 15px 16px;
}
.workflow {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 12px;
  padding: 16px 13px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 4px;
  color: #bab3c6;
  transition:
    background 0.2s,
    border-color 0.2s;
  margin-bottom: 4px;
}
.workflow.active {
  background: #251c34;
  border-color: #67438770;
  color: #eee5fa;
}
.workflow:hover {
  background: #1c1727;
}
.workflow-number {
  font: 9px var(--mono);
  color: #aaa0ba;
}
.workflow.active .workflow-number {
  color: var(--amber);
}
.workflow > span:nth-child(2) {
  font-size: 11px;
}
.workflow small {
  display: block;
  font: 8px var(--mono);
  color: #a59ab5;
  margin-top: 6px;
}
.workflow-arrow {
  margin-left: auto;
  color: #af89e3;
  font-size: 14px;
  opacity: 0;
}
.workflow.active .workflow-arrow {
  opacity: 1;
}
.sidebar-footer {
  margin-top: auto;
  padding: 24px 15px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #b1a6bf;
  font: 8px var(--mono);
}
.sidebar-footer > span:last-child {
  color: #9c91aa;
  display: flex;
  gap: 6px;
  align-items: center;
}
.console-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.console-tabs {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #201e2b;
  font: 9px var(--mono);
  color: #a29aaa;
  padding: 0 23px;
}
.console-tabs > span:first-child {
  height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #a987e3;
  color: #d5c5ef;
}
.console-tabs > span:nth-child(2) {
  font-size: 7px;
  letter-spacing: 1px;
}
.console-tabs button {
  margin-left: auto;
  border: 0;
  background: none;
  font: 9px var(--mono);
  color: #b6a5cf;
  padding: 10px;
}
.terminal-body {
  padding: 28px 28px 22px;
  min-height: 330px;
  font: 11px/1.9 var(--mono);
  overflow-x: auto;
}
.terminal-comment {
  margin: 0 0 15px;
  color: #9890a5;
  font-size: 10px;
}
.terminal-command {
  display: flex;
  gap: 12px;
  color: #e9e4f2;
  min-height: 22px;
  overflow-wrap: anywhere;
}
.terminal-command code {
  white-space: pre-wrap;
}
.prompt-symbol {
  color: var(--amber);
}
.terminal-output {
  margin-top: 23px;
  min-height: 171px;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.terminal-output.waiting {
  opacity: 0;
  transform: translateY(8px);
}
.terminal-output pre {
  font: 11px/1.9 var(--mono);
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.syntax-dim {
  color: #b4a8c2;
}
.syntax-purple {
  color: #c0a2ff;
}
.syntax-amber {
  color: #ffd16b;
}
.syntax-green {
  color: #94dbbb;
}
.terminal-result {
  font: 9px/1.6 var(--mono);
  margin-top: 19px;
  color: #b2a6c1;
}
.terminal-result > span {
  color: #86d8b0;
  margin-right: 7px;
}
.terminal-idle {
  color: var(--amber);
  margin-top: 13px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.block-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--amber);
  animation: blink 1.2s step-end infinite;
}
.console-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #24202e;
  padding: 10px 18px;
  font: 8px var(--mono);
  color: #a89cb8;
}
.console-bottom > span:first-child {
  display: flex;
  gap: 7px;
  align-items: center;
}
.console-bottom b {
  margin: 0 7px;
  color: #6e627a;
}
.console-bottom button {
  padding: 7px 11px;
  border: 1px solid #675238;
  background: #2c2418;
  color: var(--amber);
  font: 9px var(--mono);
  border-radius: 3px;
}
.console-bottom button:hover {
  background: #46351e;
}
.workflow-insight {
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 17px 23px;
  border-top: 1px solid #292333;
  background: #14121d;
}
.insight-label {
  font: 7px var(--mono);
  letter-spacing: 1px;
  color: #c0a5e9;
  flex-shrink: 0;
}
.workflow-insight p {
  font-size: 10px;
  line-height: 1.8;
  color: #b5abbe;
  margin: 0;
  flex: 1;
}
.workflow-insight a {
  font: 8px var(--mono);
  white-space: nowrap;
  color: #cfb8ef;
}
.demo-disclaimer {
  font: 8px/1.8 var(--mono);
  color: #a297ae;
  margin-top: 15px;
  text-align: center;
}
.coverage-section {
  padding-block: 110px;
}
.coverage-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.coverage-intro h2 {
  margin-top: 25px;
}
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 85px;
  margin-top: 45px;
}
.coverage-numbers {
  padding-top: 12px;
}
.coverage-numbers > strong {
  font-size: 78px;
  font-weight: 500;
  letter-spacing: -5px;
  line-height: 1;
}
.coverage-numbers > strong > span {
  font: 17px var(--mono);
  color: #9e91b0;
  letter-spacing: -0.7px;
  margin-left: 12px;
}
.coverage-numbers > p {
  font: 10px var(--mono);
  color: #a899b9;
  margin: 17px 0 26px;
}
.coverage-track {
  height: 5px;
  border-radius: 3px;
  background: #251b32;
  overflow: hidden;
}
.coverage-track > span {
  display: block;
  width: 80.66%;
  height: 100%;
  background: linear-gradient(90deg, #6d43bb, #b18ae9, var(--amber));
  transform-origin: left;
}
.coverage-small {
  display: flex;
  gap: 45px;
  margin: 26px 0 32px;
  font-size: 10px;
  color: #a99bbb;
}
.coverage-small b {
  color: #e6dcf1;
  font-size: 23px;
  font-weight: 400;
  margin-right: 7px;
}
.coverage-numbers > a {
  font: 10px var(--mono);
  color: #ccb2ee;
}
.resource-browser {
  border: 1px solid #33273e;
  border-radius: 7px;
  overflow: hidden;
  background: #100d16;
}
.resource-browser > label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid #2e223c;
  color: #b69bd1;
}
.resource-browser input {
  background: transparent;
  border: 0;
  color: #ddd0ee;
  width: 100%;
  font: 11px var(--mono);
  min-width: 0;
  padding: 5px;
}
.resource-browser input::placeholder {
  color: #a092b0;
}
.resource-browser kbd {
  font-size: 9px;
  border: 1px solid #5c476e;
  padding: 3px 6px;
  border-radius: 3px;
}
.resource-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 16px;
  min-height: 166px;
  align-content: start;
}
.resource-list > a {
  font: 9px var(--mono);
  background: #1b1425;
  border: 1px solid #392749;
  border-radius: 3px;
  padding: 10px 8px;
  color: #bfb0d4;
  display: flex;
  justify-content: space-between;
  gap: 4px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.resource-list > a:hover {
  background: #322143;
  color: #eee2ff;
  border-color: #a779d4;
  transform: translateY(-2px);
}
.resource-list > a span {
  color: #9d78bb;
}
.resource-count {
  margin: 0;
  padding: 0 18px 14px;
  color: #a597b4;
  font: 8px/1.6 var(--mono);
}
.architecture-section {
  border-block: 1px solid #2b2334;
  background:
    radial-gradient(ellipse at 75% 45%, #6838890c, transparent 60%), #0e0b13;
  padding-block: 75px;
}
.architecture-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin: 30px 0 40px;
}
.interface-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #382943;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}
.interface-switch > button {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-right: 1px solid #382943;
  background: #17101f;
  padding: 21px 26px;
  font-size: 14px;
  transition: background 0.3s;
}
.interface-switch > button:last-child {
  border-right: 0;
}
.interface-switch button[aria-selected="true"] {
  background: #2c1e3d;
  box-shadow: inset 0 -2px #c397f4;
  color: #f0e1ff;
}
.interface-switch button > span {
  font: 9px var(--mono);
  color: #b395cb;
}
.interface-switch button > code {
  font-size: 19px;
  color: #be96e8;
  margin-left: auto;
}
.interface-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  padding: 40px;
  border: 1px solid #382943;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  background: #130e1b;
}
.eyebrow {
  font: 8px var(--mono);
  color: #bc9dd6;
  letter-spacing: 1.2px;
}
.interface-copy h3 {
  font-size: 30px;
  font-weight: 450;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 20px 0 15px;
}
.interface-copy p {
  font-size: 12px;
  line-height: 1.85;
  color: #b2a1bf;
  max-width: 370px;
}
.interface-copy a {
  display: inline-block;
  font: 10px var(--mono);
  color: #dab3fa;
  margin-top: 15px;
}
.interface-code {
  min-width: 0;
  border: 1px solid #3e2b50;
  border-radius: 5px;
  background: #0c0911;
}
.interface-code > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #2e203c;
  padding: 12px 17px;
  font: 8px var(--mono);
  color: #ba9bd3;
}
.interface-code > div span:last-child {
  font-size: 6px;
  letter-spacing: 3px;
  color: #665074;
}
.interface-code pre {
  padding: 18px;
  margin: 0;
  font: 10px/1.9 var(--mono);
  color: #cdb5e8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  min-height: 209px;
}
.engineering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 47px;
}
.engineering-grid article {
  padding-right: 22px;
  border-right: 1px solid #32243b;
}
.engineering-grid article:last-child {
  border: 0;
}
.engineering-icon {
  font: 23px var(--mono);
  color: #b593d0;
}
.engineering-grid h3 {
  font-size: 14px;
  font-weight: 500;
  margin: 19px 0 12px;
}
.engineering-grid p {
  font-size: 11px;
  line-height: 1.85;
  color: #b1a0bb;
}
.engineering-grid code {
  color: #d3b7e8;
  font-size: 10px;
}
.engineering-tag {
  display: inline-block;
  font: 7px/1.7 var(--mono);
  letter-spacing: 0.7px;
  color: #bb9fcf;
  margin-top: 12px;
}
.install-section {
  padding-block: 90px;
}
.install-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  margin-top: 45px;
  align-items: center;
}
.install-copy > img {
  margin-bottom: 27px;
}
.install-copy h2 {
  font-size: 62px;
}
.install-copy h2 > span {
  color: #b29aca;
}
.amber {
  color: var(--amber);
}
.install-copy > p {
  font-size: 13px;
  line-height: 1.9;
  color: #aaa0b7;
  margin-top: 25px;
}
.install-copy > a {
  font: 10px var(--mono);
  color: #cbb3e2;
  display: inline-block;
  margin-top: 15px;
}
.install-platforms {
  font: 8px var(--mono);
  letter-spacing: 1px;
  color: #aba0b8;
  display: flex;
  gap: 18px;
  margin-top: 32px;
}
.install-platforms span {
  color: #685e75;
}
.boot-terminal {
  border: 1px solid #40304e;
  border-radius: 7px;
  background: #110d18;
  overflow: hidden;
}
.install-tabs {
  display: flex;
  padding-inline: 23px;
  border-bottom: 1px solid #32253e;
  background: #1a1222;
  gap: 24px;
}
.install-tabs button {
  font: 10px var(--mono);
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 18px 0;
  color: #b9a8ca;
}
.install-tabs button[aria-selected="true"] {
  color: var(--amber);
  border-bottom-color: var(--amber);
}
.boot-step {
  padding: 24px;
  display: flex;
  gap: 17px;
}
.boot-step + .boot-step {
  border-top: 1px solid #2b1f35;
}
.step-number {
  font: 8px var(--mono);
  color: #b69cc8;
  border: 1px solid #4c345e;
  border-radius: 50%;
  height: 23px;
  width: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.boot-step > div {
  min-width: 0;
  flex: 1;
}
.boot-step h3 {
  font-size: 12px;
  font-weight: 500;
  margin: 3px 0 15px;
}
.boot-step pre {
  font: 10px/1.9 var(--mono);
  color: #c4a9dc;
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.boot-step a {
  font: 9px var(--mono);
  color: #d1b3e8;
  display: inline-block;
  margin-top: 16px;
}
.boot-step button {
  background: #271d32;
  border: 1px solid #563d69;
  color: #d7b5f0;
  border-radius: 3px;
  font: 9px var(--mono);
  padding: 8px 12px;
  margin-top: 15px;
}
.copy-status {
  font: 9px/1.5 var(--mono);
  color: #a6dab9;
  margin: 9px 0 0;
  min-height: 13px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  padding-bottom: 90px;
}
.faq-section h2 {
  font-size: 38px;
  margin-top: 22px;
}
.faq-list details {
  border-bottom: 1px solid #302638;
  padding: 20px 0;
}
.faq-list details:first-child {
  padding-top: 0;
}
.faq-list summary {
  font-size: 12px;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #c9bbd5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font: 16px var(--mono);
  color: #b18acb;
  transition: transform 0.25s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list p {
  font-size: 12px;
  line-height: 1.9;
  color: #ac9fb9;
}
.faq-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #d7b5f0;
}
.closing {
  border-block: 1px solid #3a2946;
  padding: 38px 0;
  display: flex;
  align-items: center;
  gap: 25px;
}
.closing-prompt {
  font: 48px var(--mono);
  color: var(--amber);
  display: flex;
  gap: 10px;
  align-items: center;
}
.closing-prompt .block-cursor {
  width: 19px;
  height: 37px;
}
.closing p {
  font-size: 25px;
  letter-spacing: -0.7px;
  line-height: 1.4;
  color: #a293af;
  margin: 0;
}
.closing p strong {
  font-weight: 500;
  color: #eadff3;
}
.closing .button {
  margin-left: auto;
}
.footer {
  padding-top: 37px;
  padding-bottom: 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-top > div {
  display: flex;
  gap: 25px;
  font: 9px var(--mono);
  color: #c4afcf;
}
.footer-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font: 7px var(--mono);
  letter-spacing: 0.8px;
  color: #b7a0c7;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 23px;
  padding-top: 18px;
  border-top: 1px solid #251c2c;
  color: #a393b0;
  font: 8px/1.8 var(--mono);
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom > a {
  font-size: 7px;
  white-space: nowrap;
  letter-spacing: 0.6px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 14px;
  background: var(--amber);
  color: #17101e;
  z-index: 200;
}
.skip-link:focus {
  top: 10px;
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js-motion .reveal.visible {
  opacity: 1;
  transform: none;
}
.js-motion .hero-copy {
  animation: hero-in 0.9s both;
}
.js-motion .signal-map {
  animation: hero-in 1.1s 0.15s both;
}
.motion-paused *,
.motion-paused *:before,
.motion-paused *:after {
  animation-play-state: paused !important;
  scroll-behavior: auto !important;
  transition: none !important;
}
.motion-paused .reveal {
  opacity: 1;
  transform: none;
}
.motion-paused .hero-copy,
.motion-paused .signal-map {
  animation: none;
}
.interface-panel.changing .interface-copy,
.interface-panel.changing .interface-code {
  animation: panel-in 0.4s both;
}
.resource-list .no-results {
  font: 10px/1.8 var(--mono);
  color: #bca9ca;
  grid-column: 1/-1;
  padding: 8px;
}
.workbench-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 40px #b381ee03;
}
body:has(.workflow[data-workflow="agents"].active) .workbench {
  border-color: #765799;
}
.workflow:disabled {
  cursor: default;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
@keyframes packet {
  to {
    stroke-dashoffset: -960;
  }
}
@keyframes orbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes core-float {
  50% {
    transform: translate(-50%, -55%);
  }
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes panel-in {
  from {
    opacity: 0.2;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1450px) {
  .hero-layout {
    padding-block: 95px;
  }
  .hero-layout h1 {
    font-size: 76px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero-layout {
    grid-template-columns: 1.3fr 1fr;
  }
  h1 {
    font-size: 58px;
    letter-spacing: -3px;
  }
  .title-cursor {
    font-size: 40px;
  }
  .hero-actions {
    gap: 9px;
  }
  .button {
    padding: 14px;
    font-size: 11px;
    gap: 10px;
  }
  .signal-map {
    margin-left: 0;
    margin-right: -10px;
  }
  .map-label {
    font-size: 7px;
    padding: 8px;
  }
  .core {
    width: 105px;
    height: 121px;
  }
  .core img {
    width: 67px;
    height: 67px;
  }
  .core-orbit {
    width: 195px;
    height: 195px;
  }
  .hero-build {
    display: none;
  }
  .hero-description {
    max-width: 365px;
  }
  .hero-platforms {
    font-size: 8px;
    gap: 10px;
  }
  .workbench-main {
    grid-template-columns: 235px 1fr;
  }
  .workflow {
    padding: 15px 9px;
    gap: 9px;
  }
  .workflow > span:nth-child(2) {
    font-size: 10px;
  }
  .terminal-body {
    padding: 24px 21px;
  }
  .terminal-output pre {
    font-size: 10px;
  }
  .coverage-layout {
    gap: 50px;
  }
  .interface-panel {
    gap: 40px;
    padding: 32px;
  }
  .install-grid,
  .faq-section {
    gap: 50px;
  }
  .footer-status {
    display: none;
  }
  h2 {
    font-size: 42px;
  }
  .section-index {
    font-size: 8px;
  }
  .architecture-heading > p {
    font-size: 11px;
  }
  .resource-list {
    padding: 12px;
    gap: 5px;
  }
  .resource-list > a {
    font-size: 8px;
    padding: 10px 6px;
  }
}
@media (max-width: 800px) {
  .header nav {
    gap: 18px;
    font-size: 11px;
  }
  .github-link {
    padding: 10px;
  }
  .github-link > span {
    display: none;
  }
  .nav-inner {
    height: 72px;
    gap: 15px;
  }
  .brand img {
    width: 155px;
  }
  .nav-actions {
    gap: 9px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 58px;
    padding-bottom: 32px;
  }
  .hero-copy {
    position: relative;
    z-index: 5;
  }
  .hero-layout h1 {
    font-size: clamp(48px, 8.7vw, 68px);
  }
  .hero-lead {
    font-size: 20px;
  }
  .hero-description {
    max-width: 440px;
  }
  .hero-platforms {
    font-size: 9px;
  }
  .signal-map {
    position: absolute;
    width: 330px;
    right: -18px;
    top: 125px;
    opacity: 0.3;
    z-index: -1;
  }
  .hero-copy {
    background: linear-gradient(90deg, var(--bg) 35%, transparent 90%);
  }
  .hero-bottom {
    margin-top: 25px;
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .hero-bottom > span {
    max-width: 200px;
    line-height: 1.8;
  }
  .console-section {
    padding-top: 45px;
  }
  .section-heading {
    align-items: flex-start;
  }
  .section-heading > p {
    font-size: 10px;
    max-width: 185px;
    padding-top: 5px;
  }
  h2 {
    font-size: 35px;
  }
  .workbench-main {
    grid-template-columns: 1fr;
  }
  .workflow-sidebar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 9px;
    border-right: 0;
    border-bottom: 1px solid #34273e;
  }
  .sidebar-heading,
  .sidebar-footer,
  .workflow-number,
  .workflow-arrow {
    display: none;
  }
  .workflow {
    padding: 12px 8px;
    justify-content: center;
    margin: 0;
  }
  .workflow > span:nth-child(2) {
    font-size: 9px;
    text-align: center;
  }
  .workflow small {
    font-size: 7px;
    line-height: 1.5;
  }
  .terminal-body {
    min-height: 310px;
    padding: 26px;
  }
  .terminal-output pre {
    font-size: 11px;
  }
  .workflow-insight {
    gap: 16px;
  }
  .workflow-insight p {
    font-size: 9px;
  }
  .insight-label {
    font-size: 6px;
  }
  .coverage-section {
    padding-block: 70px;
  }
  .coverage-intro > p {
    font-size: 10px;
    max-width: 210px;
  }
  .coverage-layout {
    gap: 35px;
    grid-template-columns: 1fr 1.2fr;
  }
  .coverage-numbers > strong {
    font-size: 62px;
  }
  .coverage-numbers > strong > span {
    font-size: 12px;
    letter-spacing: -0.5px;
    margin-left: 8px;
  }
  .coverage-numbers > p {
    font-size: 9px;
  }
  .coverage-small {
    gap: 19px;
    flex-wrap: wrap;
    margin: 20px 0;
    font-size: 9px;
  }
  .coverage-small b {
    font-size: 21px;
  }
  .resource-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .architecture-section {
    padding-block: 55px;
  }
  .architecture-heading > p {
    font-size: 10px;
    max-width: 230px;
  }
  .interface-panel {
    padding: 26px;
    gap: 25px;
  }
  .interface-copy h3 {
    font-size: 26px;
  }
  .interface-copy p {
    font-size: 11px;
  }
  .interface-code pre {
    font-size: 9px;
    padding: 14px;
  }
  .interface-switch > button {
    padding: 18px;
  }
  .engineering-grid {
    gap: 20px;
  }
  .engineering-grid article {
    padding-right: 15px;
  }
  .engineering-grid h3 {
    font-size: 12px;
    line-height: 1.5;
  }
  .engineering-grid p {
    font-size: 10px;
  }
  .engineering-tag {
    font-size: 6px;
  }
  .install-grid,
  .faq-section {
    gap: 30px;
  }
  .install-copy h2 {
    font-size: 48px;
  }
  .install-copy > p {
    font-size: 11px;
  }
  .install-tabs {
    gap: 18px;
    padding-inline: 18px;
  }
  .install-tabs button {
    font-size: 9px;
  }
  .boot-step {
    padding: 20px 16px;
    gap: 12px;
  }
  .boot-step pre {
    font-size: 9px;
  }
  .install-platforms {
    gap: 10px;
    font-size: 7px;
  }
  .faq-section h2 {
    font-size: 35px;
  }
  .faq-list summary {
    font-size: 11px;
  }
  .closing p {
    font-size: 21px;
  }
  .closing-prompt {
    font-size: 35px;
  }
  .closing-prompt .block-cursor {
    height: 26px;
    width: 15px;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 36px);
  }
  html {
    scroll-padding-top: 90px;
  }
  .nav-inner {
    height: 65px;
  }
  .brand img {
    width: 137px;
  }
  .header nav {
    gap: 0;
  }
  .header nav a:not(:last-child) {
    display: none;
  }
  .nav-actions {
    gap: 8px;
  }
  .github-link {
    padding: 8px;
    font-size: 10px;
  }
  .github-link svg {
    width: 15px;
    height: 15px;
  }
  .motion-toggle {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }
  .hero {
    padding-top: 24px;
  }
  .hero-topline {
    font-size: 7px;
    letter-spacing: 0.8px;
  }
  .hero-layout {
    padding-top: 40px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-layout h1 {
    font-size: clamp(36px, 9.5vw, 55px);
    letter-spacing: -2px;
    line-height: 1.12;
    margin-bottom: 23px;
  }
  .title-cursor {
    font-size: 30px;
    letter-spacing: -10px;
    margin-left: 0 !important;
  }
  .hero-lead {
    font-size: 18px;
  }
  .hero-description {
    font-size: 12px;
    max-width: 375px;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 8px;
  }
  .button {
    font-size: 10px;
    padding: 13px 12px;
    gap: 8px;
  }
  .hero-platforms {
    font-size: 7px;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .signal-map {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 270px;
    opacity: 1;
    margin: 12px auto 0;
    max-width: 430px;
    z-index: 0;
  }
  .signal-lines {
    height: 100%;
  }
  .map-label {
    font-size: 7px;
    padding: 7px 9px;
  }
  .core {
    width: 99px;
    height: 110px;
    border-radius: 17px;
  }
  .core img {
    width: 65px;
    height: 65px;
  }
  .core > span {
    font-size: 8px;
    margin-top: 4px;
  }
  .core-orbit {
    width: 175px;
    height: 175px;
  }
  .signal-caption {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .hero-bottom {
    margin-top: 20px;
    padding: 16px 0;
    font-size: 6px;
  }
  .hero-bottom > span {
    max-width: 170px;
  }
  .section-index {
    font-size: 7px;
    letter-spacing: 1px;
    gap: 10px;
  }
  .section-index > span:last-child:not(:first-child) {
    font-size: 6px;
    letter-spacing: 0.5px;
  }
  .section-heading {
    display: block;
    margin: 25px 0;
  }
  .section-heading > p {
    max-width: none;
    font-size: 11px;
    margin-top: 18px;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.5px;
  }
  .workbench-bar {
    padding: 0 12px;
    font-size: 8px;
    height: 39px;
  }
  .demo-badge {
    font-size: 6px;
    letter-spacing: 0;
  }
  .window-dots {
    gap: 4px;
  }
  .window-dots i {
    width: 5px;
    height: 5px;
  }
  .workflow-sidebar {
    grid-template-columns: repeat(2, 1fr);
    padding: 8px;
    gap: 5px;
  }
  .workflow {
    padding: 11px 6px;
    justify-content: flex-start;
    gap: 9px;
  }
  .workflow-number {
    display: block;
    font-size: 8px;
  }
  .workflow > span:nth-child(2) {
    font-size: 9px;
    text-align: left;
  }
  .workflow small {
    font-size: 7px;
  }
  .console-tabs {
    padding: 0 15px;
    font-size: 8px;
    gap: 13px;
  }
  .console-tabs > span:nth-child(2) {
    font-size: 6px;
  }
  .console-tabs button {
    font-size: 8px;
    padding: 10px 0;
  }
  .terminal-body {
    padding: 20px 15px;
    min-height: 322px;
    font-size: 10px;
  }
  .terminal-command {
    gap: 8px;
  }
  .terminal-comment {
    font-size: 8px;
    line-height: 1.8;
  }
  .terminal-output pre {
    font-size: 9px;
    line-height: 1.9;
  }
  .terminal-result {
    font-size: 8px;
  }
  .console-bottom {
    padding: 10px 12px;
    gap: 8px;
    font-size: 7px;
  }
  .console-bottom > span:nth-child(2) {
    display: none;
  }
  .console-bottom button {
    font-size: 8px;
  }
  .workflow-insight {
    flex-wrap: wrap;
    padding: 16px;
    gap: 9px;
  }
  .insight-label {
    font-size: 7px;
    width: 100%;
  }
  .workflow-insight p {
    font-size: 10px;
    flex-basis: 100%;
  }
  .workflow-insight a {
    font-size: 8px;
    margin-top: 5px;
  }
  .demo-disclaimer {
    font-size: 7px;
    margin-inline: 10px;
  }
  .coverage-section {
    padding-block: 60px;
  }
  .coverage-intro {
    display: block;
  }
  .coverage-intro > p {
    font-size: 11px;
    max-width: none;
    margin-top: 21px;
  }
  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 23px;
  }
  .coverage-numbers > strong {
    font-size: 74px;
  }
  .coverage-numbers > strong > span {
    font-size: 16px;
    margin-left: 13px;
  }
  .coverage-numbers > p {
    font-size: 10px;
  }
  .coverage-small {
    gap: 40px;
    margin: 22px 0;
  }
  .resource-list {
    grid-template-columns: repeat(3, 1fr);
    padding: 14px;
    gap: 6px;
  }
  .resource-list > a {
    font-size: 8px;
  }
  .architecture-heading {
    display: block;
    margin: 25px 0 30px;
  }
  .architecture-heading > p {
    font-size: 11px;
    margin-top: 20px;
    max-width: none;
  }
  .interface-switch > button {
    padding: 16px 12px;
    font-size: 12px;
    gap: 9px;
  }
  .interface-switch button > span {
    font-size: 7px;
  }
  .interface-switch button > code {
    font-size: 15px;
  }
  .interface-panel {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 25px;
  }
  .interface-copy h3 {
    font-size: 28px;
  }
  .interface-copy p {
    font-size: 12px;
  }
  .interface-copy a {
    font-size: 9px;
  }
  .interface-code pre {
    font-size: 10px;
  }
  .engineering-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 35px;
  }
  .engineering-grid article {
    border-right: 0;
    border-bottom: 1px solid #33213f;
    padding: 0 0 25px;
    display: grid;
    grid-template-columns: 27px 1fr;
    column-gap: 16px;
  }
  .engineering-icon {
    grid-row: 1/4;
    font-size: 22px;
  }
  .engineering-grid h3 {
    font-size: 13px;
    margin: 3px 0 10px;
  }
  .engineering-grid p {
    font-size: 11px;
    margin: 0;
  }
  .engineering-tag {
    grid-column: 2;
    font-size: 7px;
  }
  .engineering-grid article:last-child {
    padding-bottom: 0;
  }
  .install-section {
    padding-block: 60px;
  }
  .install-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 30px;
  }
  .install-copy > img {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }
  .install-copy h2 {
    font-size: 49px;
  }
  .install-copy > p {
    font-size: 12px;
    margin-top: 20px;
  }
  .install-copy > a {
    font-size: 10px;
  }
  .install-platforms {
    font-size: 8px;
    gap: 17px;
    margin-top: 25px;
  }
  .install-tabs {
    gap: 24px;
    padding-inline: 22px;
  }
  .install-tabs button {
    font-size: 10px;
  }
  .boot-step {
    padding: 22px;
    gap: 14px;
  }
  .boot-step pre {
    font-size: 10px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 60px;
  }
  .faq-section h2 {
    font-size: 34px;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .closing {
    flex-wrap: wrap;
    gap: 17px;
    padding: 30px 0;
  }
  .closing p {
    font-size: 21px;
    letter-spacing: -0.6px;
  }
  .closing-prompt {
    font-size: 30px;
    gap: 7px;
  }
  .closing-prompt .block-cursor {
    height: 26px;
    width: 12px;
  }
  .closing .button {
    margin-left: 0;
    margin-top: 7px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 23px;
  }
  .footer-top img {
    width: 155px;
  }
  .footer-top > div {
    gap: 21px;
    font-size: 8px;
    width: 100%;
  }
  .footer-bottom {
    align-items: flex-start;
    gap: 13px;
    font-size: 7px;
  }
  .footer-bottom > a {
    font-size: 6px;
  }
  .footer-bottom p {
    max-width: 250px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js-motion .reveal {
    opacity: 1;
    transform: none;
  }
  .button:hover {
    transform: none;
  }
}

.motion-paused .interface-panel.changing .interface-copy,
.motion-paused .interface-panel.changing .interface-code {
  animation: none !important;
  opacity: 1;
  transform: none;
}
.install-note {
  font: 8px/1.7 var(--mono);
  color: #af9fc0;
  margin: 4px 0 0;
}
.workbench {
  --pointer-x: 50%;
  --pointer-y: 0%;
}
.workbench:after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    480px circle at var(--pointer-x) var(--pointer-y),
    #b489ec08,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.workbench:hover:after {
  opacity: 1;
}
.signal-grid {
  background: radial-gradient(ellipse, #9a73ec22, transparent 68%);
}
.signal-packets {
  filter: drop-shadow(0 0 4px #c199ff70);
}
.signal-map {
  transition: filter 0.4s;
}
.signal-map:hover {
  filter: brightness(1.3);
}

.author-guide {display:grid;grid-template-columns:1fr 2.2fr;gap:45px;border-top:1px solid #3a2946;border-bottom:1px solid #3a2946;padding-block:32px;margin-bottom:75px;background:linear-gradient(110deg,transparent,#9f66d509)}
.guide-label {display:flex;flex-direction:column;gap:14px;font:8px var(--mono);letter-spacing:1.2px;color:#b99bd2}
.guide-label>span:first-child {font-size:18px;letter-spacing:-.5px;color:var(--amber)}
.guide-copy h2 {font-size:25px;letter-spacing:-.7px;line-height:1.35;max-width:620px}
.guide-copy h2 a {transition:color .2s}
.guide-copy h2 a:hover {color:var(--amber)}
.guide-copy h2 span {color:var(--amber);white-space:nowrap}
.guide-copy p {font-size:12px;line-height:1.8;color:#b1a0bf;max-width:560px;margin:14px 0}
.guide-byline {font:9px var(--mono);color:#b99bd2}
.guide-byline>span {color:#81708f;margin-inline:9px}
@media(max-width:600px){.author-guide{grid-template-columns:1fr;gap:22px;margin-bottom:55px;padding-block:25px}.guide-label{flex-direction:row;align-items:center;gap:16px}.guide-label>span:first-child{font-size:15px}.guide-copy h2{font-size:23px}.guide-copy p{font-size:11px}}
