@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Noto+Serif+SC:wght@500;600;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #070b15;
  --text-strong: #f5f7fb;
  --text: rgba(245, 247, 251, 0.82);
  --text-soft: rgba(245, 247, 251, 0.63);
  --text-muted: rgba(245, 247, 251, 0.46);
  --accent: #f7dca6;
  --display: 'Noto Serif SC', 'Songti SC', serif;
  --sans: 'Manrope', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.5;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(112, 125, 255, 0.16), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(255, 207, 145, 0.12), transparent 24%),
    linear-gradient(180deg, #070b15, #0b1120 55%, #060810);
  color: var(--text);
}

a {
  color: inherit;
}

.app-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.app-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 90%);
}

.topbar,
.section,
.hero-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(24px);
  background: rgba(9, 14, 28, 0.6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-strong);
  text-decoration: none;
  font-weight: 700;
}

.brand small {
  display: block;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), transparent 35%),
    linear-gradient(145deg, rgba(201, 181, 255, 0.9), rgba(124, 179, 255, 0.3));
  color: #0b1020;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.95rem;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav a:hover {
  color: var(--text-strong);
  transform: translateY(-1px);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  padding: 90px 0 56px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.stage-card h2,
.workflow-copy h3,
.agent-card h3,
.outcome-card h3,
.closing-copy h2,
.intro-card h3 {
  font-family: var(--display);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--text-strong);
  text-wrap: balance;
}

.hero-lead {
  max-width: 540px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #08111f;
  background: linear-gradient(135deg, #efe2ff, #b0d7ff);
  box-shadow: 0 18px 48px rgba(133, 185, 255, 0.26);
}

.button-secondary {
  color: var(--text-strong);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero-stage {
  position: relative;
  min-height: 650px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.65;
}

.orb-left {
  top: 24px;
  left: 42px;
  width: 160px;
  height: 160px;
  background: rgba(242, 200, 120, 0.28);
}

.orb-right {
  right: 8px;
  bottom: 52px;
  width: 200px;
  height: 200px;
  background: rgba(92, 162, 255, 0.22);
}

.stage-card {
  position: absolute;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(10, 15, 28, 0.92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(26px);
  animation: float-card 8s ease-in-out infinite;
}

.stage-brief {
  top: 26px;
  left: 0;
  width: min(340px, 72%);
}

.stage-board {
  top: 150px;
  right: 0;
  width: min(390px, 78%);
  animation-delay: -1.6s;
}

.stage-output {
  bottom: 36px;
  left: 72px;
  width: min(360px, 76%);
  animation-delay: -3.2s;
}

.card-kicker {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stage-card h2 {
  margin: 14px 0 10px;
  font-size: 1.9rem;
  line-height: 1.08;
  color: var(--text-strong);
}

.stage-card p {
  color: var(--text-soft);
  line-height: 1.7;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chip-row span,
.tag-row span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.88rem;
}

.board-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  color: var(--text-strong);
}

.frame-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.frame-grid span {
  display: grid;
  place-items: end;
  aspect-ratio: 1 / 1;
  padding: 10px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(circle at 70% 25%, rgba(162, 191, 255, 0.5), transparent 38%),
    linear-gradient(135deg, rgba(16, 24, 44, 0.92), rgba(32, 49, 86, 0.92));
}

.frame-grid span:nth-child(3n) {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(circle at 35% 30%, rgba(255, 213, 158, 0.44), transparent 34%),
    linear-gradient(135deg, rgba(24, 22, 40, 0.96), rgba(64, 52, 86, 0.92));
}

.output-lines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.output-lines span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.output-lines span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0dfff, #97dbff);
}

.meter {
  margin-top: 20px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f3dcff, #87d7ff);
}

.section {
  padding: 58px 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--text-strong);
  text-wrap: balance;
}

.intro-grid,
.agent-grid,
.outcome-grid,
.closing-metrics {
  display: grid;
  gap: 18px;
}

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

.intro-card,
.agent-card,
.outcome-card,
.workflow-card,
.closing-metrics article {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.intro-card {
  padding: 24px;
}

.intro-card span {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.intro-card h3,
.agent-card h3,
.outcome-card h3 {
  margin: 14px 0 12px;
  color: var(--text-strong);
  font-size: 1.6rem;
  line-height: 1.12;
}

.intro-card p,
.agent-card p,
.outcome-card p,
.closing-copy p {
  color: var(--text-soft);
  line-height: 1.75;
}

.workflow-list {
  display: grid;
  gap: 16px;
}

.workflow-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 240px;
  gap: 22px;
  align-items: start;
  padding: 22px;
}

.workflow-index span {
  display: block;
  color: var(--accent);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.workflow-index small {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-copy h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: var(--text-strong);
}

.workflow-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.workflow-output {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
}

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

.agent-card {
  padding: 22px;
}

.agent-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-card-head p {
  margin: 0;
  font-size: 0.9rem;
}

.agent-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5dcff, #8fd8ff);
}

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

.outcome-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  min-height: 290px;
}

.outcome-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -30% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 219, 255, 0.32), transparent 68%);
}

.outcome-card:nth-child(2)::before {
  background: radial-gradient(circle, rgba(255, 214, 153, 0.22), transparent 68%);
}

.outcome-label {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tag-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.closing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  padding-bottom: 80px;
}

.closing-copy {
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(12, 18, 32, 0.94);
}

.closing-copy h2 {
  margin: 0 0 16px;
  color: var(--text-strong);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.closing-copy p:last-child {
  margin: 0;
}

.closing-metrics {
  grid-template-columns: 1fr;
}

.closing-metrics article {
  padding: 22px;
}

.closing-metrics strong {
  display: block;
  color: var(--text-strong);
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
}

.closing-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
}

@keyframes float-card {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@media (max-width: 1080px) {
  .hero-section,
  .closing-section,
  .intro-grid,
  .agent-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

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

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

  .workflow-output {
    width: fit-content;
  }
}

@media (max-width: 820px) {
  .topbar {
    position: static;
    width: min(1160px, calc(100% - 24px));
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-section,
  .section {
    width: min(1160px, calc(100% - 24px));
  }

  .hero-section {
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-stage {
    min-height: 600px;
  }

  .stage-brief,
  .stage-board,
  .stage-output {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin-bottom: 16px;
  }

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

.lab-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.lab-panel,
.result-card,
.task-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.lab-panel {
  padding: 24px;
}

.lab-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.lab-kicker,
.result-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lab-head h3,
.result-card h4 {
  margin: 12px 0 0;
  color: var(--text-strong);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.12;
}

.provider-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.provider-strip span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.82rem;
}

.lab-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.field {
  display: grid;
  gap: 10px;
}

.preset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.preset-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.preset-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.preset-option span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(3, 8, 18, 0.72);
  color: var(--text);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.preset-option input:checked + span {
  border-color: rgba(190, 223, 255, 0.6);
  background: linear-gradient(135deg, rgba(236, 226, 255, 0.14), rgba(176, 215, 255, 0.12));
  color: var(--text-strong);
  transform: translateY(-1px);
}

.field span {
  color: var(--text-strong);
  font-weight: 700;
}

.field input[type='file'],
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(3, 8, 18, 0.72);
  color: var(--text-strong);
  padding: 14px 16px;
}

.field textarea {
  resize: vertical;
  min-height: 132px;
}

.field input[type='file']::file-selector-button {
  margin-right: 12px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-strong);
  cursor: pointer;
}

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

.field-note,
.result-note,
.result-card p,
.task-card p {
  color: var(--text-soft);
  line-height: 1.7;
}

.field-note,
.status-line {
  margin: 0;
}

.advanced-box {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 16px 18px;
}

.advanced-box summary {
  cursor: pointer;
  color: var(--text-strong);
  font-weight: 700;
  list-style: none;
}

.advanced-box summary::-webkit-details-marker {
  display: none;
}

.advanced-box[open] summary {
  margin-bottom: 14px;
}

.status-line {
  min-height: 28px;
  margin-top: 18px;
  color: var(--text);
}

.status-line[data-state='loading'] {
  color: #ffdca4;
}

.status-line[data-state='success'] {
  color: #9de0b0;
}

.status-line[data-state='error'] {
  color: #ffb0b0;
}

.result-shell {
  margin-top: 12px;
}

.empty-copy {
  margin: 0;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
}

.result-grid,
.result-columns {
  display: grid;
  gap: 16px;
}

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

.result-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.result-card,
.task-card {
  padding: 22px;
}

.result-card h4 {
  margin-bottom: 10px;
}

.result-card-wide {
  margin-top: 0;
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.bullet-list strong {
  color: var(--text-strong);
}

.bullet-list span {
  color: var(--text-soft);
}

.attempt-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.attempt-item {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.attempt-item strong,
.attempt-item a {
  color: var(--text-strong);
}

.attempt-item span,
.attempt-item small {
  color: var(--text-soft);
  line-height: 1.65;
}

.task-card code {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-strong);
  word-break: break-all;
}

.generated-image {
  display: block;
  width: 100%;
  margin-top: 18px;
  border-radius: 20px;
}

@media (max-width: 1080px) {
  .lab-grid,
  .result-grid,
  .result-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .field-row {
    grid-template-columns: 1fr;
  }

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

  .lab-head {
    flex-direction: column;
  }
}

.agent-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.agent-pick {
  padding: 20px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.agent-pick:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

.agent-pick.is-active {
  border-color: rgba(190, 223, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(236, 226, 255, 0.1), rgba(176, 215, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.agent-pick-type,
.workspace-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agent-pick strong {
  display: block;
  margin-top: 12px;
  color: var(--text-strong);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.12;
}

.agent-pick p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.workspace-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.workspace-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.workspace-head h3 {
  margin: 12px 0 0;
  color: var(--text-strong);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.05;
}

.workspace-description {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.workspace-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.workspace-badges span,
.workspace-defaults span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.84rem;
}

.workspace-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  line-height: 1.75;
}

.workspace-form {
  margin-top: 24px;
}

.workspace-defaults {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.planned-pane {
  margin-top: 24px;
}

.planned-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

@media (max-width: 1080px) {
  .agent-selector {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .workspace-head {
    flex-direction: column;
  }

  .workspace-badges {
    justify-content: flex-start;
  }
}
