:root {
  --bg: #070a09;
  --panel: #0c1110;
  --panel-raised: #101715;
  --ink: #f1f5ef;
  --muted: #8d9791;
  --faint: #59625d;
  --line: rgba(235, 244, 238, 0.13);
  --line-strong: rgba(235, 244, 238, 0.24);
  --signal: #a7ff1e;
  --signal-dim: rgba(167, 255, 30, 0.1);
  --cyan: #65dbe7;
  --danger: #ff8585;
  --serif: ui-serif, "Songti SC", STSong, Georgia, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 82% -10%, rgba(101, 219, 231, 0.055), transparent 35%),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

ul {
  padding-left: 1.15rem;
}

.shell {
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 9, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 255, 30, 0.55);
  background: var(--signal-dim);
  color: var(--signal);
  font: 25px/1 var(--serif);
}

.brand strong {
  display: block;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.brand small,
.micro {
  color: rgba(241, 245, 239, 0.42);
  font: 10px/1.4 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(241, 245, 239, 0.62);
  font-size: 14px;
}

.nav a {
  transition: color 160ms ease, border-color 160ms ease;
}

.nav a:hover {
  color: var(--ink);
}

.nav .studio {
  border: 1px solid var(--line-strong);
  padding: 10px 14px;
}

.nav .studio:hover {
  border-color: rgba(167, 255, 30, 0.55);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(241, 245, 239, 0.48);
  font: 11px var(--mono);
  letter-spacing: 0.1em;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 16px rgba(167, 255, 30, 0.72);
}

.pipeline-head {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.pipeline-head::after {
  content: "";
  position: absolute;
  inset: auto 0 0 48%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(167, 255, 30, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 255, 30, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.pipeline-head > .shell {
  position: relative;
  z-index: 1;
  padding-block: 56px 30px;
}

.pipeline-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 72px;
}

.pipeline-intro h1 {
  margin: 0;
  font: clamp(48px, 6.2vw, 86px) / 0.96 var(--serif);
  letter-spacing: -0.055em;
}

.pipeline-intro h1 span {
  display: block;
  color: var(--signal);
}

.pipeline-intro > p {
  max-width: 570px;
  margin-bottom: 5px;
  color: rgba(241, 245, 239, 0.63);
  font-size: 16px;
  line-height: 1.85;
}

.pipeline-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr)) minmax(190px, 1.45fr);
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pipeline-stats > div {
  min-height: 88px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 9, 0.62);
}

.pipeline-stats b {
  display: block;
  color: var(--ink);
  font: 26px/1.1 var(--mono);
}

.pipeline-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.pipeline-stats .updated b {
  color: var(--signal);
  font-size: 16px;
  line-height: 1.55;
}

.section {
  padding: 48px 0 72px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: 26px;
  letter-spacing: -0.025em;
}

.status-legend {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
}

.status-legend span:first-child {
  color: var(--signal);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(12, 17, 16, 0.82);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 255, 30, 0.48);
  background: var(--panel-raised);
}

.card-status,
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  color: rgba(241, 245, 239, 0.62);
  font: 11px/1.2 var(--mono);
}

.tag.signal {
  border-color: rgba(167, 255, 30, 0.4);
  background: rgba(167, 255, 30, 0.055);
  color: var(--signal);
}

.tge-chip {
  flex: 0 0 auto;
  color: var(--muted);
  font: 11px var(--mono);
}

.card-kicker {
  margin: 34px 0 8px;
}

.card h3 {
  margin: 0 0 16px;
  font: 35px/1.05 var(--serif);
  letter-spacing: -0.035em;
}

.card-headline {
  min-height: 44px;
  margin-bottom: 10px;
  color: rgba(241, 245, 239, 0.84);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}

.dek {
  color: rgba(241, 245, 239, 0.57);
  line-height: 1.78;
}

.card .dek {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 14px;
}

.card-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.card-facts span {
  min-width: 0;
  padding: 12px;
  background: var(--panel);
  color: var(--faint);
  font-size: 10px;
}

.card-facts b {
  display: block;
  overflow: hidden;
  margin-bottom: 4px;
  color: var(--ink);
  font: 13px/1.3 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-foot {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 11px;
}

.card-score {
  color: var(--signal);
  font: 26px/1 var(--mono);
}

.empty-library {
  min-height: 320px;
  display: grid;
  grid-template-columns: 160px minmax(0, 560px);
  place-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 14px;
  border: 1px dashed var(--line-strong);
  background: rgba(12, 17, 16, 0.45);
}

.empty-orbit {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid rgba(167, 255, 30, 0.4);
  border-radius: 50%;
  color: var(--signal);
  font: 42px var(--mono);
  box-shadow: inset 0 0 40px rgba(167, 255, 30, 0.04);
}

.empty-library h2 {
  margin: 10px 0;
  font: 34px/1.2 var(--serif);
}

.empty-library p:not(.micro) {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.8;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: var(--faint);
  font-size: 12px;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--signal);
  border-radius: 0;
  background: var(--signal);
  color: #081000;
  padding: 10px 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: filter 150ms ease, background 150ms ease, color 150ms ease;
}

.btn:hover {
  filter: brightness(1.07);
}

.btn.secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.btn.secondary:hover {
  border-color: rgba(167, 255, 30, 0.55);
  color: var(--signal);
  filter: none;
}

.btn.compact {
  width: 100%;
  min-height: 38px;
  margin-top: 8px;
  padding: 8px 10px;
  font-size: 12px;
}

.btn:disabled {
  opacity: 0.46;
  cursor: not-allowed;
}

.report-layout {
  display: grid;
  grid-template-columns: 170px minmax(0, 780px) minmax(220px, 260px);
  justify-content: center;
  gap: 42px;
  padding: 50px 0 76px;
}

.toc,
.rail {
  position: sticky;
  top: 102px;
  align-self: start;
}

.toc a {
  display: block;
  padding: 7px 0;
  color: var(--faint);
  font-size: 12px;
  transition: color 150ms ease;
}

.toc a:first-of-type {
  margin-top: 14px;
}

.toc a:hover,
.back:hover {
  color: var(--signal);
}

.back {
  color: var(--muted);
  font-size: 13px;
}

.report-tags {
  margin-top: 34px;
}

.report-title {
  margin: 28px 0 22px;
  font: clamp(45px, 5.6vw, 76px) / 0.98 var(--serif);
  letter-spacing: -0.052em;
}

.report-dek {
  max-width: 720px;
  color: rgba(241, 245, 239, 0.62);
  font-size: 18px;
  line-height: 1.8;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: var(--faint);
  font-size: 12px;
}

.article-section {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.article-section:first-of-type {
  margin-top: 38px;
}

.article-section h2 {
  margin: 10px 0 25px;
  font: 35px/1.15 var(--serif);
  letter-spacing: -0.03em;
}

.article-section h3 {
  margin: 28px 0 8px;
  font-size: 16px;
}

.article-section p,
.article-section li {
  color: rgba(241, 245, 239, 0.66);
  font-size: 16px;
  line-height: 1.9;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.panel {
  border: 1px solid var(--line);
  background: rgba(12, 17, 16, 0.75);
  padding: 22px;
}

.panel h3:first-child {
  margin-top: 0;
}

.risk-panel {
  margin-top: 12px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fact-strip > div {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip span {
  display: block;
  margin-bottom: 7px;
  color: var(--faint);
  font-size: 11px;
}

.fact-strip b {
  display: block;
  overflow-wrap: anywhere;
  font: 13px/1.45 var(--mono);
}

.source {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 9px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  color: rgba(241, 245, 239, 0.7);
  overflow-wrap: anywhere;
  transition: color 150ms ease, border-color 150ms ease;
}

.source span {
  color: var(--signal);
  font: 16px var(--mono);
}

.source:hover {
  border-color: rgba(167, 255, 30, 0.48);
  color: var(--signal);
}

.rail .panel {
  margin-bottom: 12px;
}

.status-panel {
  border-top-color: rgba(167, 255, 30, 0.55);
}

.rail-status {
  margin: 12px 0 18px;
  color: var(--signal);
  font: 18px/1.3 var(--mono);
}

.status-panel dl {
  margin: 0 0 16px;
}

.status-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.status-panel dt {
  color: var(--faint);
  font-size: 11px;
}

.status-panel dd {
  margin: 0;
  text-align: right;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.rail-score {
  margin: 12px 0;
  color: var(--signal);
  font: 66px/1 var(--mono);
  letter-spacing: -0.08em;
}

.rail-value {
  margin: 12px 0 0;
  font: 30px/1.1 var(--mono);
}

.meter {
  width: 100%;
  height: 4px;
  border: 0;
  background: var(--line);
  accent-color: var(--signal);
}

.meter::-webkit-progress-bar {
  background: var(--line);
}

.meter::-webkit-progress-value,
.meter::-moz-progress-bar {
  background: var(--signal);
}

.disclaimer {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
  line-height: 1.75;
}

.studio-wrap {
  padding: 38px 0 80px;
}

.studio-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.studio-label {
  display: block;
  margin: 24px 0 9px;
}

.studio-top h1 {
  margin: 0 0 9px;
  font: clamp(42px, 5vw, 64px) / 1 var(--serif);
  letter-spacing: -0.045em;
}

.studio-top .dek {
  margin: 0;
  font-size: 15px;
}

.workflow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  margin: 20px 0;
  border: 1px solid var(--line);
  background: rgba(12, 17, 16, 0.62);
}

.workflow span {
  padding: 13px 17px;
  color: var(--muted);
  font-size: 13px;
}

.workflow b {
  margin-right: 8px;
  color: var(--signal);
  font: 12px var(--mono);
}

.workflow i {
  color: var(--faint);
  font-style: normal;
}

.api-setup {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: end;
  gap: 28px;
  margin: 0 0 20px;
  padding: 20px 22px;
  border: 1px solid rgba(167, 255, 30, 0.32);
  background: rgba(167, 255, 30, 0.035);
}

.api-setup h2 {
  margin: 7px 0 6px;
  font-size: 20px;
}

.api-setup p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.api-key-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
}

.api-key-row .field {
  margin: 0;
}

.api-key-row input {
  min-height: 46px;
  font-family: var(--mono);
}

.api-key-row .btn {
  min-height: 46px;
  white-space: nowrap;
}

.api-setup > .notice {
  grid-column: 1 / -1;
  margin-top: -14px;
}

.api-setup.configured {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.api-status {
  color: var(--signal);
  font: 12px var(--mono);
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 18px;
}

.studio-panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(12, 17, 16, 0.88);
}

.studio-panel h2 {
  margin: 9px 0 18px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.intake-panel {
  position: sticky;
  top: 91px;
  max-height: calc(100vh - 112px);
  overflow: auto;
  scrollbar-color: var(--line-strong) transparent;
}

.account-intake h2 {
  margin-bottom: 8px;
}

.intake-copy {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.account-intake > .field input {
  min-height: 58px;
  padding: 15px 16px;
  border-color: var(--line-strong);
  font: 16px/1.4 var(--mono);
}

.research-scope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.research-scope span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  background: rgba(167, 255, 30, 0.025);
  color: rgba(241, 245, 239, 0.58);
  font: 11px var(--mono);
}

.research-scope span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--signal);
}

.optional-input {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.optional-input summary {
  padding: 13px 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
}

.optional-input[open] {
  padding-bottom: 16px;
}

.optional-input .field {
  margin-top: 0;
}

.optional-input .field textarea {
  min-height: 110px;
}

.review-details {
  margin-top: 24px;
  padding: 0 16px;
  border: 1px solid var(--line);
}

.review-details[open] {
  padding: 0 16px 20px;
}

.review-details .field,
.review-details .two,
.review-details .three,
.review-details .list-grid {
  margin-top: 16px;
}

.review-details .two .field,
.review-details .three .field,
.review-details .list-grid .field {
  margin-top: 0;
}

.field {
  display: block;
  margin-top: 16px;
}

.field > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(241, 245, 239, 0.68);
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: #080c0b;
  color: var(--ink);
  padding: 11px 13px;
  font-size: 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field select {
  min-height: 43px;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
  line-height: 1.65;
}

.intake-panel .field textarea {
  min-height: 145px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(241, 245, 239, 0.26);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(167, 255, 30, 0.58);
  box-shadow: 0 0 0 2px rgba(167, 255, 30, 0.07);
}

.two,
.three,
.list-grid {
  display: grid;
  gap: 12px;
}

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

.three,
.list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.notice {
  min-height: 22px;
  margin: 13px 0 0;
  color: var(--signal);
  font-size: 12px;
  line-height: 1.65;
}

.notice.error {
  color: var(--danger);
}

.empty {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--faint);
  text-align: center;
}

.empty::before {
  content: "02";
  position: absolute;
  color: rgba(167, 255, 30, 0.06);
  font: 180px/1 var(--mono);
}

.empty > div {
  position: relative;
  max-width: 440px;
}

.empty h2 {
  margin: 12px 0;
  color: rgba(241, 245, 239, 0.7);
  font: 30px/1.2 var(--serif);
}

.empty p {
  line-height: 1.75;
}

.empty.hidden,
.editor {
  display: none;
}

.editor.active {
  display: block;
}

.editor-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.editor-head h2 {
  margin-bottom: 0;
}

.review-state {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(167, 255, 30, 0.38);
  color: var(--signal);
  font: 10px var(--mono);
}

.list-grid textarea {
  min-height: 160px;
}

.publish-note {
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 2px solid var(--signal);
  background: var(--signal-dim);
  color: rgba(241, 245, 239, 0.68);
  font-size: 12px;
  line-height: 1.7;
}

.sticky-actions {
  position: sticky;
  bottom: 0;
  z-index: 4;
  justify-content: flex-end;
  margin: 0 -26px -26px;
  padding: 15px 26px;
  border-top: 1px solid var(--line);
  background: rgba(12, 17, 16, 0.96);
  backdrop-filter: blur(12px);
}

.error-page {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.error-page h1 {
  max-width: 860px;
  margin: 18px 0 32px;
  font: clamp(38px, 6vw, 72px) / 1.05 var(--serif);
}

.source,
.field input,
.field textarea,
.report-dek,
.dek,
.card-headline {
  overflow-wrap: anywhere;
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-layout {
    grid-template-columns: minmax(0, 760px) minmax(220px, 250px);
  }

  .toc {
    display: none;
  }

  .studio-grid {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  }

  .three,
  .list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(100% - 32px, 1360px);
  }

  .pipeline-intro,
  .report-layout,
  .api-setup,
  .studio-grid {
    grid-template-columns: 1fr;
  }

  .api-setup {
    align-items: start;
  }

  .pipeline-intro {
    gap: 28px;
  }

  .pipeline-head::after {
    left: 20%;
  }

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

  .pipeline-stats .updated {
    grid-column: 1 / -1;
  }

  .rail {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .intake-panel {
    position: static;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, 1360px);
  }

  .header-inner {
    min-height: 64px;
  }

  .nav a:not(.studio) {
    display: none;
  }

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

  .api-key-row .btn {
    width: 100%;
  }

  .brand small {
    display: none;
  }

  .pipeline-head > .shell {
    padding-top: 40px;
  }

  .pipeline-intro h1 {
    font-size: 48px;
  }

  .pipeline-stats {
    margin-top: 34px;
  }

  .pipeline-stats > div {
    min-height: 80px;
    padding: 15px;
  }

  .section-head,
  .studio-top,
  .editor-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-legend {
    max-width: 100%;
    gap: 9px;
    flex-wrap: wrap;
  }

  .project-grid,
  .split,
  .fact-strip,
  .two,
  .rail {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 390px;
  }

  .empty-library {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 22px;
  }

  .empty-orbit {
    width: 112px;
    height: 112px;
    font-size: 32px;
  }

  .report-title {
    font-size: 43px;
  }

  .article-section h2 {
    font-size: 31px;
  }

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

  .workflow i {
    display: none;
  }

  .workflow span:not(:first-child) {
    border-top: 1px solid var(--line);
  }

  .studio-panel {
    padding: 20px;
  }

  .sticky-actions {
    justify-content: stretch;
    margin: 0 -20px -20px;
    padding: 13px 20px;
  }

  .sticky-actions .btn {
    flex: 1;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
