:root {
  --up-ink: #080a09;
  --up-graphite: #121614;
  --up-panel: #171e1b;
  --up-raised: #232b27;
  --up-paper: #f5f1e8;
  --up-muted: #beb7a8;
  --up-proof: #70e8cb;
  --up-trace: #d99335;
  --up-fault: #f26b55;
  --up-steel: #6d837d;
  --up-line: #303a35;
  --up-paper-line: #d7cdbd;
  --up-shadow: 0 28px 70px rgba(0, 0, 0, .34);
  --up-radius-panel: 10px;
  --up-radius-control: 7px;
  --up-font-ui: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --up-font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--up-font-ui);
  color: var(--up-paper);
  background: var(--up-ink);
  line-height: 1.5;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; }
pre { font-family: var(--up-font-mono); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 34px;
  border-bottom: 1px solid rgba(245, 241, 232, .08);
  background: rgba(8, 10, 9, .82);
  backdrop-filter: blur(18px);
}
.brand, .side-brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 820;
}
.brand-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--up-muted);
  font-size: 14px;
}
.site-nav a:not(.button):hover { color: var(--up-paper); }
.inline-form { display: inline; margin: 0; }
.inline-form button, .site-nav button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  background: var(--up-proof);
  color: var(--up-ink);
  border: 1px solid var(--up-proof);
  border-radius: var(--up-radius-control);
  font-weight: 830;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(112, 232, 203, .16);
}
.button.small {
  min-height: 36px;
  padding: 8px 13px;
}
.button.ghost {
  background: rgba(245, 241, 232, .03);
  color: var(--up-paper);
  border-color: rgba(245, 241, 232, .18);
  box-shadow: none;
}
.button:hover { transform: translateY(-1px); }
.messages {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 0 24px;
}
.message {
  padding: 12px 14px;
  background: rgba(112, 232, 203, .12);
  border: 1px solid rgba(112, 232, 203, .36);
  border-radius: var(--up-radius-control);
}
.message.error {
  background: rgba(242, 107, 85, .14);
  border-color: rgba(242, 107, 85, .42);
}

.marketing-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(112, 232, 203, .08), transparent 28rem),
    radial-gradient(circle at 88% 0%, rgba(217, 147, 53, .08), transparent 24rem),
    var(--up-ink);
}
.section {
  position: relative;
  padding: 108px 6vw;
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--up-proof);
  font-family: var(--up-font-mono);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lede {
  color: var(--up-muted);
  font-size: 21px;
  max-width: 720px;
}
.section-copy p,
.section-kicker p,
.pricing-head p,
.page-hero p {
  color: var(--up-muted);
  font-size: 18px;
}
.hero h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: 68px;
  line-height: .95;
  font-weight: 850;
}
.hero h1 span { color: var(--up-proof); }
.section h2,
.page-hero h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: 54px;
  line-height: 1;
  font-weight: 830;
}
.text-link,
.plan-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--up-proof);
  font-weight: 820;
}
.text-link::after,
.plan-link::after {
  content: "->";
  font-family: var(--up-font-mono);
}

.hero-stage {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 760px;
  padding: 90px 6vw 74px;
  isolation: isolate;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 24px 4vw 42px;
  border: 1px solid rgba(112, 232, 203, .32);
  background:
    linear-gradient(90deg, rgba(217, 147, 53, .85), transparent 26%) left top / 100% 7px no-repeat,
    linear-gradient(90deg, rgba(112, 232, 203, .9), transparent 62%) left bottom / 100% 7px no-repeat,
    rgba(18, 22, 20, .72);
  box-shadow: var(--up-shadow);
  z-index: -2;
}
.hero-stage::after {
  content: "";
  position: absolute;
  right: 4vw;
  top: 24px;
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, var(--up-proof) 0 50%, transparent 51%);
  z-index: -1;
}
.hero-proof-shell {
  position: absolute;
  inset: 76px 5vw 92px 43vw;
  opacity: .92;
  z-index: -1;
}
.hero-report {
  position: absolute;
  inset: 0;
  width: 100%;
  transform: perspective(1100px) rotateX(4deg) rotateY(-8deg) rotateZ(.3deg);
  border: 1px solid rgba(112, 232, 203, .28);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(23, 30, 27, .98), rgba(8, 10, 9, .92));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
  padding: 28px;
}
.report-topline,
.mission-strip,
.brief-evidence-strip,
.rerun-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--up-font-mono);
  font-size: 12px;
  color: var(--up-muted);
}
.report-topline { justify-content: space-between; margin-bottom: 26px; }
.report-topline strong,
.verified-card,
.proof-chip { color: var(--up-proof); }
.mission-strip span {
  padding: 12px;
  border: 1px solid rgba(245, 241, 232, .11);
  border-radius: 7px;
  background: rgba(245, 241, 232, .045);
}
.trace-line {
  position: relative;
  height: 90px;
  margin: 32px 20px;
  border-bottom: 2px solid var(--up-trace);
}
.trace-line i {
  position: absolute;
  bottom: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--up-trace);
}
.trace-line i:nth-child(1) { left: 0; }
.trace-line i:nth-child(2) { left: 34%; }
.trace-line i:nth-child(3) { left: 68%; background: var(--up-fault); }
.trace-line i:nth-child(4) { right: 0; background: var(--up-proof); }
.hero-finding-card {
  width: min(420px, 100%);
  margin-left: auto;
  padding: 22px;
  border: 1px solid rgba(242, 107, 85, .42);
  border-radius: var(--up-radius-panel);
  background: rgba(8, 10, 9, .72);
}
.hero-finding-card h3 { margin: 14px 0 10px; font-size: 24px; }
.hero-finding-card p { color: var(--up-muted); margin-bottom: 0; }
.hero-status-rail {
  position: absolute;
  right: 22px;
  top: 90px;
  display: grid;
  gap: 18px;
  color: var(--up-steel);
  font-family: var(--up-font-mono);
  font-size: 11px;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.problem-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 54px;
  align-items: center;
  background: var(--up-paper);
  color: var(--up-ink);
}
.problem-section .eyebrow { color: var(--up-trace); }
.problem-section .section-copy p { color: #6f6658; }
.dossier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dossier-card {
  position: relative;
  min-height: 188px;
  padding: 20px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-panel);
  background: #fff9ee;
  color: var(--up-ink);
  box-shadow: 0 16px 40px rgba(8, 10, 9, .08);
}
.dossier-card::after,
.finding-brief::after,
.pricing-grid article::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 26px;
  height: 34px;
  background:
    linear-gradient(135deg, var(--up-proof) 0 50%, transparent 51%) top right / 26px 26px no-repeat,
    linear-gradient(var(--up-proof), var(--up-proof)) right 26px / 7px 7px no-repeat;
  border-top-right-radius: var(--up-radius-panel);
}
.dossier-card span,
.brief-head span,
.plan-label,
.process-timeline span,
.boundary-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: #6f6658;
  font-family: var(--up-font-mono);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.dossier-card h3 { font-size: 26px; line-height: 1.04; }
.dossier-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.dossier-meta b {
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(8, 10, 9, .08);
  color: #6f6658;
  font-family: var(--up-font-mono);
  font-size: 11px;
  text-transform: uppercase;
}
.dossier-card.dark .dossier-meta b {
  background: rgba(245, 241, 232, .08);
  color: var(--up-muted);
}
.dossier-card.large { min-height: 260px; }
.dossier-card.dark {
  background: var(--up-panel);
  color: var(--up-paper);
  border-color: var(--up-line);
}
.dossier-card.note {
  transform: rotate(-1.2deg);
  border-color: rgba(242, 107, 85, .36);
}
.dossier-card pre {
  margin: 22px 0 0;
  color: var(--up-proof);
  white-space: pre-wrap;
}
.proof-chip {
  display: inline-flex;
  margin: 14px 0 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .12);
  font-family: var(--up-font-mono);
  font-size: 12px;
}
.proof-chip.failed {
  color: var(--up-fault);
  background: rgba(242, 107, 85, .11);
}
.proof-chip.running {
  color: var(--up-trace);
  background: rgba(217, 147, 53, .13);
}
.screenshot-sim {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 8px;
  background: var(--up-panel);
}
.screenshot-sim i {
  display: block;
  height: 12px;
  border-radius: 3px;
  background: var(--up-steel);
}
.screenshot-sim i:nth-child(2) { width: 70%; opacity: .7; }
.screenshot-sim i:nth-child(3) { width: 42%; opacity: .46; }
.screenshot-sim b {
  justify-self: end;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--up-proof);
  color: var(--up-ink);
  font-size: 12px;
}

.workflow-section {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 58px;
  align-items: center;
}
.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  min-height: 390px;
  align-items: stretch;
}
.workflow-rail::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 178px;
  height: 2px;
  background: linear-gradient(90deg, var(--up-trace), var(--up-proof));
  opacity: .58;
  z-index: 0;
}
.workflow-rail article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(245, 241, 232, .12);
  border-radius: var(--up-radius-panel);
  background: linear-gradient(180deg, rgba(35, 43, 39, .95), rgba(8, 10, 9, .9));
  box-shadow: var(--up-shadow);
  z-index: 1;
}
.workflow-rail article:nth-child(2) { transform: translateY(36px); }
.workflow-rail article:nth-child(3) { transform: translateY(72px); border-color: rgba(112, 232, 203, .36); }
.instrument-lights {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}
.instrument-lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--up-fault);
}
.instrument-lights i:nth-child(2) { background: var(--up-trace); }
.instrument-lights i:nth-child(3) { background: var(--up-proof); }
.workflow-rail span {
  color: var(--up-proof);
  font-family: var(--up-font-mono);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.instrument-screen {
  display: grid;
  gap: 8px;
  min-height: 118px;
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid rgba(112, 232, 203, .2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(217, 147, 53, .74), transparent 62%) left bottom / 100% 2px no-repeat,
    rgba(245, 241, 232, .045);
}
.instrument-screen b {
  color: var(--up-paper);
  font-size: 13px;
}
.instrument-screen span {
  display: block;
  padding: 6px 8px;
  border-radius: 5px;
  background: rgba(245, 241, 232, .055);
  color: var(--up-muted);
  font-size: 11px;
  text-transform: none;
}
.mission-screen {
  background:
    linear-gradient(90deg, rgba(217, 147, 53, .74), transparent 62%) left bottom / 100% 2px no-repeat,
    repeating-linear-gradient(90deg, rgba(112, 232, 203, .12) 0 1px, transparent 1px 42px),
    rgba(245, 241, 232, .045);
}
.evidence-mini-screen {
  border-color: rgba(112, 232, 203, .34);
}
.workflow-rail h3 { margin-bottom: 12px; font-size: 24px; }
.workflow-rail p { color: var(--up-muted); margin-bottom: 0; }
.instrument-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 241, 232, .1);
  color: var(--up-muted);
  font-family: var(--up-font-mono);
  font-size: 11px;
}
.instrument-footer b {
  color: var(--up-proof);
  text-transform: uppercase;
}
.instrument-footer em {
  font-style: normal;
  text-align: right;
}

.evidence-section {
  background: linear-gradient(180deg, var(--up-ink), #050605);
}
.section-kicker {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}
.finding-brief {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(112, 232, 203, .28);
  border-radius: var(--up-radius-panel);
  background:
    linear-gradient(90deg, rgba(217, 147, 53, .8), transparent 30%) left top / 100% 6px no-repeat,
    linear-gradient(90deg, rgba(112, 232, 203, .9), transparent 70%) left bottom / 100% 6px no-repeat,
    var(--up-paper);
  color: var(--up-ink);
  box-shadow: var(--up-shadow);
}
.brief-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.brief-head h3 {
  max-width: 650px;
  margin: 10px 0 0;
  font-size: 36px;
  line-height: 1.04;
}
.brief-metrics {
  display: flex;
  gap: 12px;
}
.brief-metrics span {
  min-width: 132px;
  padding: 14px;
  border: 1px solid var(--up-paper-line);
  border-radius: 8px;
  background: #fff9ee;
  color: #6f6658;
}
.brief-metrics b {
  display: block;
  color: var(--up-ink);
  font-size: 30px;
}
.brief-body {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr .9fr;
  gap: 18px;
}
.brief-body > * {
  padding: 18px;
  border: 1px solid var(--up-paper-line);
  border-radius: 8px;
  background: #fff9ee;
}
.brief-body h4 {
  margin-bottom: 8px;
  font-size: 13px;
  font-family: var(--up-font-mono);
  text-transform: uppercase;
}
.brief-body p,
.brief-body ol { margin-bottom: 0; color: #4f4a41; }
.evidence-screen {
  display: grid;
  gap: 12px;
  min-height: 190px;
  background:
    linear-gradient(90deg, var(--up-trace), transparent 68%) left 70% / 100% 2px no-repeat,
    var(--up-panel) !important;
  color: var(--up-paper);
}
.evidence-screen span {
  color: var(--up-muted);
  font-family: var(--up-font-mono);
  font-size: 12px;
  font-weight: 850;
}
.evidence-screen i {
  display: block;
  height: 11px;
  border-radius: 3px;
  background: var(--up-steel);
}
.evidence-screen i:nth-of-type(2) { width: 72%; opacity: .72; }
.evidence-screen i:nth-of-type(3) { width: 48%; opacity: .52; }
.evidence-screen b {
  justify-self: end;
  align-self: end;
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--up-proof);
  color: var(--up-ink);
  font-size: 12px;
}
.brief-evidence-strip {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--up-paper-line);
}
.brief-evidence-strip span {
  padding: 8px 10px;
  border-radius: 7px;
  background: var(--up-ink);
  color: var(--up-paper);
}

.rerun-section {
  display: grid;
  grid-template-columns: .66fr 1.34fr;
  gap: 52px;
  align-items: center;
}
.kanban-preview {
  padding: 18px;
  border: 1px solid rgba(245, 241, 232, .12);
  border-radius: 14px;
  background: rgba(245, 241, 232, .04);
  box-shadow: var(--up-shadow);
}
.kanban-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 12px;
}
.kanban-columns article {
  min-height: 340px;
  padding: 14px;
  border: 1px solid rgba(245, 241, 232, .1);
  border-radius: 9px;
  background: var(--up-panel);
}
.kanban-columns span {
  display: block;
  margin-bottom: 14px;
  color: var(--up-muted);
  font-family: var(--up-font-mono);
  font-size: 11px;
  text-transform: uppercase;
}
.kanban-columns p {
  padding: 12px;
  border: 1px solid rgba(245, 241, 232, .1);
  border-radius: 7px;
  background: rgba(245, 241, 232, .045);
  color: var(--up-paper);
  font-size: 14px;
}
.kanban-columns .active-card {
  border-color: var(--up-trace);
}
.kanban-columns .verified-card {
  border-color: var(--up-proof);
  background: rgba(112, 232, 203, .12);
}
.rerun-proof {
  justify-content: space-between;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(112, 232, 203, .24);
  border-radius: 8px;
  background: var(--up-ink);
}
.rerun-proof div {
  flex: 1 1 200px;
  height: 2px;
  background: linear-gradient(90deg, var(--up-trace), var(--up-proof));
}

.handoff-section {
  display: grid;
  grid-template-columns: 1.12fr 38px .78fr;
  gap: 34px;
  align-items: center;
  background: linear-gradient(115deg, #070908, var(--up-graphite));
}
.task-brief-stack {
  display: grid;
  grid-template-columns: .58fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.tool-card,
.task-brief-stack pre,
.brief-code {
  border: 1px solid rgba(245, 241, 232, .12);
  border-radius: var(--up-radius-panel);
  background: var(--up-panel);
  box-shadow: var(--up-shadow);
}
.tool-card {
  padding: 24px;
}
.tool-card span {
  color: var(--up-proof);
  font-family: var(--up-font-mono);
  font-size: 12px;
  text-transform: uppercase;
}
.tool-card h3 {
  margin: 34px 0 16px;
  font-size: 28px;
  line-height: 1.04;
}
.tool-card p { color: var(--up-muted); }
.brief-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}
.brief-facts div {
  padding: 9px;
  border: 1px solid rgba(245, 241, 232, .1);
  border-radius: 6px;
  background: rgba(8, 10, 9, .36);
}
.brief-facts dt {
  color: var(--up-steel);
  font-family: var(--up-font-mono);
  font-size: 10px;
  text-transform: uppercase;
}
.brief-facts dd {
  margin: 4px 0 0;
  color: var(--up-paper);
  font-weight: 800;
}
.brief-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.brief-tags b {
  padding: 7px 9px;
  border: 1px solid rgba(112, 232, 203, .2);
  border-radius: 6px;
  color: var(--up-proof);
  font-family: var(--up-font-mono);
  font-size: 11px;
}
.task-brief-stack pre {
  margin: 36px 0 0;
  padding: 22px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: var(--up-proof);
  white-space: pre-wrap;
  font-size: 13px;
}
.brief-code {
  margin-top: 34px;
  overflow: hidden;
}
.brief-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 16px 16px;
}
.brief-screens span {
  display: grid;
  place-items: end start;
  min-height: 78px;
  padding: 9px;
  border: 1px solid rgba(245, 241, 232, .1);
  border-radius: 7px;
  background:
    linear-gradient(90deg, var(--up-trace), transparent 70%) left 62% / 100% 2px no-repeat,
    rgba(245, 241, 232, .06);
  color: var(--up-muted);
  font-family: var(--up-font-mono);
  font-size: 10px;
}
.side-note {
  writing-mode: vertical-rl;
  color: var(--up-steel);
  font-family: var(--up-font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pricing-section {
  background: var(--up-paper);
  color: var(--up-ink);
}
.pricing-section .eyebrow { color: #24705c; }
.pricing-head {
  display: grid;
  grid-template-columns: 1fr .68fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 20px;
}
.pricing-head p { color: #6f6658; }
.session-quote {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid #cfd7d1;
  border-radius: var(--up-radius-control);
  background: #edf8f4;
  color: #24705c;
  font-family: var(--up-font-mono);
  font-size: 13px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.pricing-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 22px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-panel);
  background: #fff9ee;
}
.pricing-grid article::after { opacity: .38; }
.pricing-grid strong {
  display: block;
  margin: 8px 0 16px;
  font-size: 34px;
  line-height: 1;
}
.pricing-grid p {
  color: #5d564b;
  font-size: 15px;
}
.pricing-grid a {
  margin-top: auto;
}
.pricing-grid .featured {
  border-color: var(--up-trace);
  box-shadow: 0 24px 55px rgba(8, 10, 9, .12);
}
.pricing-grid .featured::after {
  opacity: 1;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 34px;
  min-height: 420px;
  background:
    radial-gradient(circle at 74% 18%, rgba(112, 232, 203, .12), transparent 22rem),
    var(--up-ink);
}
.final-cta h2 {
  max-width: 850px;
  font-size: 64px;
}
.final-actions {
  display: grid;
  justify-items: start;
  gap: 16px;
  min-width: 210px;
}
.final-cta.compact {
  min-height: 300px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 34px;
  color: var(--up-muted);
  border-top: 1px solid rgba(245, 241, 232, .08);
  background: var(--up-ink);
}

.page-hero {
  min-height: 520px;
  padding: 120px 6vw 80px;
  border-bottom: 1px solid rgba(245, 241, 232, .08);
  background:
    linear-gradient(90deg, rgba(217, 147, 53, .8), transparent 34%) left bottom / 100% 6px no-repeat,
    radial-gradient(circle at 82% 20%, rgba(112, 232, 203, .12), transparent 26rem);
}
.page-hero h1 {
  max-width: 980px;
  font-size: 70px;
  line-height: .98;
}
.page-hero p {
  max-width: 740px;
}
.process-timeline {
  display: grid;
  gap: 0;
}
.process-timeline article {
  display: grid;
  grid-template-columns: 90px .8fr 1fr;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid rgba(245, 241, 232, .12);
}
.process-timeline h2 {
  margin: 0;
  font-size: 34px;
}
.process-timeline p {
  margin: 0;
  color: var(--up-muted);
}
.boundary-section,
.pricing-faq,
.auth-page {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: center;
}
.boundary-grid,
.faq-list {
  display: grid;
  gap: 14px;
}
.boundary-grid {
  grid-template-columns: 1fr 1fr;
}
.boundary-grid article,
.faq-list article {
  padding: 24px;
  border: 1px solid rgba(245, 241, 232, .12);
  border-radius: var(--up-radius-panel);
  background: var(--up-panel);
}
.boundary-grid p,
.faq-list p { color: var(--up-muted); }

.auth-page {
  min-height: calc(100vh - 72px);
  padding: 70px 6vw;
}
.auth-aside h1 {
  max-width: 620px;
  font-size: 58px;
  line-height: 1;
}
.auth-aside p {
  max-width: 540px;
  color: var(--up-muted);
  font-size: 19px;
}
.auth-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.auth-proof span {
  padding: 9px 11px;
  border: 1px solid rgba(112, 232, 203, .22);
  border-radius: 999px;
  color: var(--up-proof);
  font-family: var(--up-font-mono);
  font-size: 12px;
}
.auth-panel {
  width: min(560px, 100%);
  justify-self: end;
  padding: 30px;
  border: 1px solid rgba(245, 241, 232, .12);
  border-radius: var(--up-radius-panel);
  background:
    linear-gradient(90deg, rgba(217, 147, 53, .82), transparent 50%) left top / 100% 5px no-repeat,
    var(--up-panel);
  box-shadow: var(--up-shadow);
}
.auth-panel h1 {
  margin-bottom: 18px;
  font-size: 38px;
}
.auth-route-note {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid rgba(112, 232, 203, .22);
  border-radius: var(--up-radius-control);
  background: rgba(112, 232, 203, .08);
}
.auth-route-note strong {
  color: var(--up-proof);
  font-family: var(--up-font-mono);
  font-size: 12px;
  text-transform: uppercase;
}
.auth-route-note p,
.auth-switch {
  margin: 0;
  color: var(--up-muted);
}
.auth-switch {
  margin-top: 18px;
  font-size: 14px;
}
.stack-form {
  display: grid;
  gap: 14px;
}
.stack-form label {
  color: var(--up-paper);
  font-weight: 780;
}
.stack-form p {
  display: grid;
  gap: 6px;
  margin: 0;
}
.stack-form input,
.stack-form textarea,
.stack-form select,
.inline-controls select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(245, 241, 232, .16);
  border-radius: var(--up-radius-control);
  background: rgba(8, 10, 9, .6);
  color: var(--up-paper);
}
.stack-form textarea { min-height: 110px; }
.helptext,
.errorlist {
  color: var(--up-muted);
  font-size: 12px;
}
.errorlist {
  color: var(--up-fault);
  margin: 0;
  padding-left: 18px;
}
.form-errors {
  padding: 12px;
  border: 1px solid rgba(242, 107, 85, .36);
  border-radius: var(--up-radius-control);
  background: rgba(242, 107, 85, .12);
}
.password-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -4px;
}
.password-rules span {
  padding: 7px 9px;
  border: 1px solid rgba(112, 232, 203, .2);
  border-radius: 999px;
  color: var(--up-proof);
  font-family: var(--up-font-mono);
  font-size: 11px;
}

.app-shell .site-header { display: none; }
body.app-shell { overflow-x: hidden; }
.app-layout {
  display: grid;
  grid-template-columns: 204px minmax(0, 1fr);
  min-height: 100dvh;
  background:
    radial-gradient(circle at 78% 0%, rgba(112, 232, 203, .18), transparent 24rem),
    linear-gradient(90deg, rgba(217, 147, 53, .08), transparent 38%),
    var(--up-paper);
  color: var(--up-ink);
}
.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100dvh;
  padding: 20px 14px;
  border-right: 1px solid rgba(245, 241, 232, .1);
  background:
    linear-gradient(180deg, rgba(112, 232, 203, .08), transparent 30%),
    var(--up-ink);
  color: var(--up-paper);
}
.sidebar nav {
  display: grid;
  gap: 5px;
}
.nav-short { display: none; }
.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 8px 9px;
  border: 1px solid transparent;
  border-radius: var(--up-radius-control);
  color: var(--up-muted);
  font-size: 14px;
  font-weight: 720;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.sidebar nav a:hover,
.sidebar nav a.active {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(112, 232, 203, .22);
  color: var(--up-paper);
}
.sidebar nav a:hover { transform: translateX(2px); }
.sidebar nav a.active { box-shadow: inset 3px 0 0 var(--up-proof); }
.nav-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 5px;
  opacity: .9;
}
.nav-icon.dashboard { border-radius: 4px 4px 7px 7px; transform: rotate(45deg) scale(.82); }
.nav-icon.dashboard::before { content: ""; width: 8px; height: 8px; border-left: 1.5px solid currentColor; border-top: 1.5px solid currentColor; transform: rotate(-90deg); }
.nav-icon.create::before,
.nav-icon.findings::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.nav-icon.personas { border-radius: 50% 50% 8px 8px; }
.nav-icon.personas::before { content: ""; position: absolute; top: -8px; width: 7px; height: 7px; border: 1.5px solid currentColor; border-radius: 50%; background: var(--up-ink); }
.nav-icon.missions { border-radius: 50%; }
.nav-icon.missions::before,
.nav-icon.missions::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: var(--up-ink);
}
.nav-icon.missions::before { left: -7px; }
.nav-icon.missions::after { right: -7px; }
.nav-icon.run::before,
.nav-icon.run::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  width: 2px;
  border-left: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}
.nav-icon.run::before { left: 4px; }
.nav-icon.run::after { right: 4px; }
.nav-icon.settings { border-radius: 50%; }
.nav-icon.settings::before { content: ""; width: 6px; height: 6px; border: 1.5px solid currentColor; border-radius: 50%; }
.usage-box {
  margin-top: auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--up-radius-panel);
  background: rgba(255, 255, 255, .08);
  color: var(--up-muted);
}
.usage-box strong {
  display: block;
  margin: 8px 0;
  color: var(--up-paper);
  font-size: 20px;
}
.meter {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}
.meter span {
  display: block;
  height: 100%;
  max-width: 100%;
  background: var(--up-trace);
}
.app-main {
  width: 100%;
  max-width: 1520px;
  min-width: 0;
  padding: clamp(14px, 2vw, 24px) clamp(24px, 2.7vw, 36px) clamp(28px, 3vw, 46px);
}
.app-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 26px;
  padding-bottom: 10px;
}
.app-head h1 {
  margin-bottom: 8px;
  max-width: 980px;
  font-size: clamp(44px, 5vw, 66px);
  line-height: .94;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.app-head-compact {
  margin-bottom: 14px;
}
.app-head-compact h1 {
  font-size: clamp(32px, 3.4vw, 46px);
}
.app-head-copy {
  max-width: 760px;
  margin: 10px 0 0;
  color: #6f6658;
  font-size: 16px;
}
.actions,
.inline-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.metric-grid,
.quote-grid,
.three-up,
.card-grid {
  display: grid;
  gap: 16px;
}
.first-run-panel,
.safety-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid rgba(37, 95, 69, .22);
  border-radius: var(--up-radius-panel);
  background:
    linear-gradient(90deg, rgba(112, 232, 203, .56), transparent 42%) left top / 100% 4px no-repeat,
    #fffaf0;
  box-shadow: 0 18px 46px rgba(24, 22, 17, .06);
}
.first-run-panel h2,
.safety-callout h2 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.05;
}
.first-run-panel p,
.safety-callout p,
.safety-callout li {
  margin-bottom: 0;
  color: #5d564b;
}
.safety-callout {
  grid-template-columns: minmax(0, .9fr) minmax(260px, .7fr);
  align-items: start;
}
.safety-callout ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}
.metric-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
}
.metric-grid article,
.panel,
.quote-grid article,
.three-up article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-panel);
  background:
    linear-gradient(90deg, rgba(112, 232, 203, .5), transparent 36%) left top / 100% 3px no-repeat,
    rgba(255, 249, 238, .88);
  box-shadow: 0 18px 46px rgba(24, 22, 17, .06);
}
.metric-grid article {
  min-height: 132px;
  display: grid;
  align-content: space-between;
}
.metric-grid span,
.quote-grid span {
  color: #6f6658;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
}
.metric-grid strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.two-column,
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.detail-grid { grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); }
.detail-grid { align-items: start; }
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.panel-head h2,
.panel h2 {
  margin: 0;
  font-size: 20px;
}
.panel-head a,
.app-shell .panel a:not(.row-link):not(.finding-card):not(.button) {
  color: #255f45;
  font-weight: 850;
}
.panel-copy {
  margin: -6px 0 16px;
  color: #6f6658;
}
.mission-discovery-panel {
  margin-bottom: 18px;
}
.mission-discovery-status,
.scope-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.mission-discovery-status span,
.scope-preview-head span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .2);
  color: #0d6b58;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mission-discovery-status small,
.scope-preview-head strong {
  color: #6f6658;
  font-size: 12px;
  font-weight: 850;
}
.mission-task-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.mission-task-grid article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(40, 36, 28, .12);
  border-radius: var(--up-radius-card);
  background: rgba(255, 252, 246, .78);
}
.mission-task-grid article span {
  color: #0d6b58;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.mission-task-grid h3 {
  margin: 8px 0 6px;
  font-size: 16px;
  line-height: 1.06;
}
.mission-task-grid p,
.mission-task-grid small {
  margin: 0;
  color: #5d564b;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.36;
}
.item-list,
.detail-list,
.table,
.process-list {
  display: grid;
  gap: 8px;
}
.row-link {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-control);
  background: rgba(245, 241, 232, .72);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.row-link:hover {
  border-color: rgba(37, 95, 69, .34);
  background: #fffaf0;
  transform: translateY(-1px);
}
.row-link span,
.empty,
.detail-list dt {
  color: #6f6658;
}

.settings-head {
  align-items: flex-start;
  margin-bottom: 6px;
  padding-left: 60px;
}
.settings-head .app-head-copy {
  max-width: 860px;
}
.settings-head h1 {
  margin-top: 0;
  color: var(--up-ink);
  font-size: clamp(44px, 5vw, 64px);
}
.settings-head .app-head-copy > p:not(.eyebrow) {
  color: #6f6658;
}
.settings-head .actions {
  padding-top: 8px;
}
.settings-shell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.settings-rail {
  position: sticky;
  top: 18px;
  display: grid;
  align-content: space-between;
  justify-items: center;
  min-height: 650px;
  margin-top: -158px;
  padding: 18px 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #1d201c, #2b2b25);
  color: rgba(245, 241, 232, .72);
  box-shadow: 0 18px 34px rgba(24, 22, 17, .16);
}
.settings-rail span,
.settings-rail b {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--up-font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.settings-rail b {
  color: var(--up-proof);
}
.settings-body {
  min-width: 0;
}
.settings-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.settings-metrics article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  min-height: 88px;
  padding: 15px;
  border: 1px solid rgba(40, 36, 28, .1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0 0, rgba(112, 232, 203, .13), transparent 55%),
    rgba(255, 249, 238, .76);
  box-shadow: 0 10px 22px rgba(24, 22, 17, .035);
}
.settings-metrics small,
.settings-project-head span,
.settings-definition-list dt,
.settings-usage-row small,
.settings-plan-facts small {
  display: block;
  color: #6f6658;
  font-family: var(--up-font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.settings-metrics strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--up-ink);
  font-size: 20px;
  line-height: 1.05;
}
.settings-metrics em,
.settings-warn-pill {
  display: inline-flex;
  width: max-content;
  margin-top: 3px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(217, 147, 53, .18);
  color: #875a16;
  font-family: var(--up-font-mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}
.settings-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(112, 232, 203, .18), rgba(245, 241, 232, .68));
  color: #255f45;
}
.settings-icon::before,
.settings-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}
.settings-icon.bookmark::before {
  width: 14px;
  height: 20px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}
.settings-icon.bookmark::after {
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.settings-icon.pulse::before {
  width: 24px;
  height: 14px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewX(-24deg);
}
.settings-icon.gauge::before {
  width: 23px;
  height: 23px;
  border: 2px solid currentColor;
  border-bottom-color: transparent;
  border-radius: 50%;
}
.settings-icon.gauge::after {
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: rotate(-35deg) translate(4px, 2px);
}
.settings-icon.folder::before {
  width: 24px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 3px;
}
.settings-icon.folder::after {
  top: 12px;
  left: 13px;
  width: 10px;
  height: 5px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 3px 0 0 0;
}
.settings-icon.key::before {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-5px, -2px);
}
.settings-icon.key::after {
  width: 17px;
  height: 2px;
  background: currentColor;
  box-shadow: 7px 5px 0 -1px currentColor;
  transform: translate(5px, 5px) rotate(-45deg);
}
.settings-icon.terminal::before {
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-5px, 0) rotate(-45deg);
}
.settings-icon.terminal::after {
  right: 10px;
  bottom: 12px;
  width: 12px;
  height: 2px;
  background: currentColor;
}
.settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.78fr) minmax(300px, .58fr);
  gap: 12px;
  align-items: start;
}
.settings-main-stack,
.settings-side-stack {
  display: grid;
  gap: 10px;
  min-width: 0;
}
.settings-panel {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(40, 36, 28, .1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(112, 232, 203, .36), transparent 34%) left top / 100% 2px no-repeat,
    radial-gradient(circle at 0 0, rgba(255, 255, 255, .42), transparent 18rem),
    rgba(255, 249, 238, .76);
  box-shadow: 0 12px 28px rgba(24, 22, 17, .035);
}
.settings-panel.compact {
  padding: 14px;
}
.settings-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.settings-panel-head h2 {
  margin: 0;
  color: var(--up-ink);
  font-size: 20px;
  line-height: 1.05;
}
.settings-panel-head p {
  margin: 5px 0 0;
  color: #6f6658;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}
.settings-panel-head > span,
.settings-panel-action {
  color: #255f45;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.settings-panel-action {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(37, 95, 69, .2);
  border-radius: 8px;
  background: rgba(112, 232, 203, .12);
}
.settings-usage-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(40, 36, 28, .09);
}
.settings-usage-row strong,
.settings-plan-facts strong {
  display: inline-block;
  margin-top: 6px;
  color: var(--up-ink);
  font-size: 22px;
  line-height: 1;
}
.settings-usage-row p,
.settings-plan-facts p {
  margin: 8px 0 0;
  color: #6f6658;
  font-size: 13px;
  font-weight: 720;
}
.settings-meter {
  height: 9px;
  margin: 10px 0 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(40, 36, 28, .08);
}
.settings-meter span {
  display: block;
  height: 100%;
  max-width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d99335, #e7b55d);
}
.settings-plan-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.settings-project-table {
  overflow: hidden;
  border: 1px solid rgba(40, 36, 28, .08);
  border-radius: 8px;
  background: rgba(255, 249, 238, .48);
}
.settings-project-head,
.settings-project-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.05fr) minmax(180px, 1.25fr) minmax(110px, .72fr) minmax(110px, .72fr) 82px;
  gap: 12px;
  align-items: center;
  padding: 13px 12px;
}
.settings-project-head {
  border-bottom: 1px solid rgba(40, 36, 28, .09);
}
.settings-project-row {
  border-bottom: 1px solid rgba(40, 36, 28, .08);
}
.settings-project-row:last-child {
  border-bottom: 0;
}
.settings-project-row span,
.settings-project-row small {
  color: #5d564b;
  font-size: 11px;
  font-weight: 740;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.settings-project-row span > strong {
  display: block;
  margin-bottom: 3px;
  color: var(--up-ink);
  font-size: 11.5px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.settings-project-row span > small {
  display: block;
}
.settings-project-name {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.settings-project-name i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(112, 232, 203, .18);
  color: #255f45;
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
}
.settings-project-name strong {
  display: block;
  overflow: hidden;
  color: var(--up-ink);
  font-size: 11.5px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.settings-state-pill {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 999px;
  font-family: var(--up-font-mono);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.settings-state-pill.safe {
  background: rgba(112, 232, 203, .2);
  color: #25624c;
}
.settings-state-pill.warn {
  background: rgba(217, 147, 53, .18);
  color: #875a16;
}
.settings-row-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}
.settings-row-actions a {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  min-width: 34px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(37, 95, 69, .18);
  border-radius: 8px;
  background: rgba(112, 232, 203, .11);
  color: #255f45;
  font-size: 0;
}
.settings-row-actions a::before,
.settings-row-actions a::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}
.settings-row-actions a:first-child::before {
  width: 13px;
  height: 3px;
  border: 2px solid currentColor;
  border-radius: 2px;
  transform: rotate(-45deg);
}
.settings-row-actions a:first-child::after {
  width: 6px;
  height: 1.5px;
  background: currentColor;
  transform: translate(6px, -6px) rotate(-45deg);
}
.settings-row-actions a:last-child::before {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 3px;
}
.settings-row-actions a:last-child::after {
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.settings-note,
.settings-ready-line {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(40, 36, 28, .08);
  color: #6f6658;
  font-size: 12px;
  font-weight: 760;
}
.settings-side-list {
  display: grid;
  gap: 0;
}
.settings-side-list > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(40, 36, 28, .08);
}
.settings-side-list > div:last-child {
  border-bottom: 0;
}
.settings-side-list strong,
.settings-member-list strong {
  color: var(--up-ink);
  font-size: 13px;
  font-weight: 900;
}
.settings-side-list p {
  margin: 4px 0 0;
  color: #6f6658;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
}
.settings-member-list {
  display: grid;
  gap: 8px;
}
.settings-member-list div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}
.settings-member-list span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .16);
  color: #255f45;
  font-size: 9px;
  font-weight: 950;
}
.settings-member-list strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.settings-member-list b {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .16);
  color: #25624c;
  font-family: var(--up-font-mono);
  font-size: 10px;
  text-transform: uppercase;
}
.settings-definition-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  margin: 0;
}
.settings-definition-list div {
  display: contents;
}
.settings-definition-list dt,
.settings-definition-list dd {
  padding: 11px 0;
  border-bottom: 1px solid rgba(40, 36, 28, .08);
}
.settings-definition-list dd {
  margin: 0;
  color: var(--up-ink);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}
.settings-empty-state {
  padding: 18px;
}
.settings-empty-state p {
  margin: 4px 0 0;
  color: #6f6658;
}
.card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.table-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr .35fr .2fr;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid var(--up-paper-line);
}
.table-head {
  color: #6f6658;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.board-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.board-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .76);
  color: #5d564b;
  font-weight: 850;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.board-tabs a:hover,
.board-tabs a.active {
  border-color: rgba(37, 95, 69, .34);
  background: #fffaf0;
  color: var(--up-ink);
  transform: translateY(-1px);
}
.board-tabs strong {
  min-width: 24px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(37, 95, 69, .11);
  color: #255f45;
  font-family: var(--up-font-mono);
  font-size: 12px;
  text-align: center;
}
.kanban {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  overflow-x: visible;
  padding-bottom: 12px;
}
.kanban-column {
  min-height: 260px;
  padding: 10px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-panel);
  background: rgba(235, 229, 216, .78);
  transition: border-color .18s ease, background .18s ease;
}
.kanban-column.is-drop-target {
  border-color: rgba(37, 95, 69, .42);
  background: #e0eadf;
}
.kanban-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
}
.kanban-column h2 {
  margin: 0;
  color: #6f6658;
  font-size: 13px;
  text-transform: uppercase;
}
.kanban-column-head span {
  color: #6f6658;
  font-family: var(--up-font-mono);
  font-size: 12px;
  font-weight: 850;
}
.finding-card {
  display: grid;
  gap: 7px;
  margin-bottom: 8px;
  padding: 11px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-control);
  background: #fff9ee;
  transition: border-color .18s ease, transform .18s ease;
}
.finding-card:hover {
  border-color: rgba(37, 95, 69, .32);
  transform: translateY(-1px);
}
.finding-card[draggable="true"] {
  cursor: grab;
}
.finding-card.is-dragging {
  opacity: .56;
  cursor: grabbing;
}
.finding-card.is-saving {
  pointer-events: none;
  opacity: .72;
}
.finding-card-title {
  color: var(--up-ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.12;
}
.finding-card p {
  display: -webkit-box;
  margin: 0;
  color: #5d564b;
  font-size: 13px;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.finding-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(40, 36, 28, .08);
}
.finding-card footer > span,
.card-activity {
  color: #6f6658;
  font-size: 11px;
  font-weight: 800;
}
.finding-card footer > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-activity {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  height: 34px;
}
.card-actions > form {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
}
.card-icon-action,
.card-more-actions > summary,
.finding-more-actions > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  box-sizing: border-box;
  padding: 0;
  border: 1px solid rgba(37, 95, 69, .2);
  border-radius: 8px;
  background: rgba(255, 249, 238, .72);
  color: #255f45;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  list-style: none;
  text-decoration: none;
  vertical-align: middle;
  overflow: hidden;
  appearance: none;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.card-icon-action:hover,
.card-more-actions > summary:hover,
.finding-more-actions > summary:hover {
  border-color: rgba(37, 95, 69, .38);
  background: rgba(112, 232, 203, .2);
  transform: translateY(-1px);
}
.card-icon-action svg,
.card-more-actions > summary svg,
.finding-more-actions > summary svg,
.primary-action svg {
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  pointer-events: none;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-icon-action.accept svg,
.primary-action.accept svg {
  display: none;
}
.card-icon-action.accept::before,
.primary-action.accept::before {
  content: "";
  display: block;
  width: 11px;
  height: 6px;
  border-left: 2.4px solid currentColor;
  border-bottom: 2.4px solid currentColor;
  transform: rotate(-45deg) translate(.5px, -.5px);
  transform-origin: center;
}
.card-icon-action.start svg,
.primary-action.start svg {
  display: none;
}
.card-icon-action.start::before,
.primary-action.start::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5.5px solid transparent;
  border-bottom: 5.5px solid transparent;
  border-left: 8px solid currentColor;
  transform: translateX(1.5px);
}
.card-icon-action.verify svg,
.primary-action.verify svg,
.card-icon-action.rerun svg,
.primary-action.rerun svg {
  stroke-width: 2.7;
}
.card-icon-action.open svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.5;
}
.card-more-actions > summary svg,
.finding-more-actions > summary svg {
  display: none;
}
.card-more-actions > summary::before,
.finding-more-actions > summary::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}
.card-more-actions,
.finding-more-actions {
  position: relative;
}
.card-more-actions[open],
.finding-more-actions[open] {
  z-index: 20;
}
.card-more-actions[open] > summary,
.finding-more-actions[open] > summary {
  border-color: rgba(37, 95, 69, .5);
  background: rgba(112, 232, 203, .26);
  box-shadow: 0 0 0 3px rgba(112, 232, 203, .16);
}
.card-more-actions > summary::-webkit-details-marker,
.finding-more-actions > summary::-webkit-details-marker {
  display: none;
}
.action-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  gap: 8px;
  width: min(280px, calc(100vw - 36px));
  padding: 10px;
  border: 1px solid rgba(40, 36, 28, .18);
  border-radius: var(--up-radius-control);
  background: #fff9ee;
  box-shadow: 0 18px 34px rgba(24, 22, 17, .2), 0 2px 0 rgba(37, 95, 69, .08);
}
.action-menu-panel::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: calc(var(--up-radius-control) + 5px);
  background: rgba(8, 10, 9, .045);
}
.action-menu-panel a {
  color: #255f45;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.action-menu-panel form,
.archive-disclosure {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(40, 36, 28, .1);
}
.action-menu-panel form:first-child,
.archive-disclosure:first-child {
  padding-top: 0;
  border-top: 0;
}
.action-menu-panel strong,
.action-menu-panel label {
  color: #6f6658;
  font-family: var(--up-font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.archive-disclosure > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  padding: 7px 8px;
  border: 1px solid rgba(152, 59, 50, .14);
  border-radius: 8px;
  background: rgba(152, 59, 50, .045);
  color: #7a2f29;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.archive-disclosure > summary::-webkit-details-marker {
  display: none;
}
.archive-disclosure > summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .72;
}
.archive-disclosure[open] > summary::after {
  transform: rotate(225deg) translate(-2px, -1px);
}
.archive-disclosure form {
  padding-top: 0;
  border-top: 0;
}
.archive-reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}
.archive-reasons label {
  display: block;
  min-width: 0;
}
.archive-reasons input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.archive-reasons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 28px;
  padding: 5px 6px;
  border: 1px solid rgba(37, 95, 69, .15);
  border-radius: 999px;
  background: rgba(40, 36, 28, .04);
  color: #514a3f;
  font-family: var(--up-font-sans);
  font-size: 10.5px;
  font-weight: 820;
  line-height: 1.1;
  text-transform: none;
  text-align: center;
}
.archive-reasons input:checked + span {
  border-color: rgba(37, 95, 69, .34);
  background: rgba(112, 232, 203, .18);
  color: #255f45;
}
.action-menu-panel input[type="text"],
.action-menu-panel select {
  width: 100%;
  min-height: 32px;
  border: 1px solid var(--up-paper-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
  font-size: 12px;
}
.app-shell .action-menu-panel button.archive-submit {
  min-height: 34px;
  border-color: rgba(152, 59, 50, .2);
  background: rgba(152, 59, 50, .08);
  color: #7a2f29;
}
.card-badge-row,
.finding-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.severity {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: 4px 7px;
  font-family: var(--up-font-mono);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.severity.medium { background: #efe2c9; color: #785017; }
.severity.high,
.severity.critical { background: #f3d1ca; color: #9c382a; }
.severity.low { background: #d9f5eb; color: #24705c; }
.qa-badge {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: 4px 7px;
  font-family: var(--up-font-mono);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  background: #e6ded0;
  color: #62594c;
}
.qa-badge.passed { background: #d9f5eb; color: #24705c; }
.qa-badge.warning { background: #f4e4be; color: #7b5218; }
.qa-badge.failed { background: #f3d1ca; color: #9c382a; }
.qa-badge.unchecked { background: #e3e6e1; color: #5d665f; }
.status-pill {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: 4px 7px;
  background: rgba(37, 95, 69, .09);
  color: #255f45;
  font-family: var(--up-font-mono);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.finding-detail-shell {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 38px;
}
.proof-rail {
  position: absolute;
  left: 0;
  top: -46px;
  bottom: 0;
  width: 26px;
  border-left: 1px solid rgba(245, 241, 232, .08);
  border-right: 1px solid rgba(245, 241, 232, .08);
  background:
    linear-gradient(180deg, rgba(112, 232, 203, .14), transparent 42%),
    rgba(8, 10, 9, .84);
  color: rgba(245, 241, 232, .64);
}
.proof-rail span,
.proof-rail b,
.proof-rail em {
  position: absolute;
  left: 50%;
  width: max-content;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: var(--up-font-mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.proof-rail span { top: 86px; }
.proof-rail b { bottom: 190px; }
.proof-rail em { bottom: 72px; color: rgba(112, 232, 203, .72); }
.proof-rail i {
  position: absolute;
  left: 50%;
  top: 160px;
  bottom: 300px;
  width: 2px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .78);
  transform: translateX(-50%);
}
.finding-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding-top: 0;
}
.finding-detail-head h1 {
  max-width: 720px;
  margin: 5px 0 10px;
  font-size: clamp(30px, 2.5vw, 40px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}
.finding-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.finding-head-actions .button {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 760;
}
.finding-head-actions .primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.finding-dossier-grid {
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(500px, 1.05fr);
  gap: 12px;
  align-items: start;
}
.finding-primary-stack,
.finding-secondary-stack {
  display: grid;
  gap: 12px;
}
.dossier-panel {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(40, 36, 28, .1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(112, 232, 203, .42), transparent 36%) left top / 100% 2px no-repeat,
    radial-gradient(circle at 4% 0%, rgba(255, 255, 255, .34), transparent 18rem),
    rgba(255, 249, 238, .76);
  box-shadow: 0 10px 26px rgba(24, 22, 17, .03);
}
.dossier-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.dossier-panel-head h2 {
  margin: 0;
  font-size: 16px;
}
.dossier-panel-head span,
.dossier-panel-head small {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  color: #6f6658;
  font-family: var(--up-font-mono);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.dossier-panel-head strong {
  color: #24705c;
  font-family: var(--up-font-mono);
  font-size: 22px;
  line-height: 1;
}
.dossier-section {
  border-bottom: 1px solid rgba(40, 36, 28, .09);
  padding: 0 0 8px;
  margin-bottom: 8px;
}
.dossier-section:last-of-type {
  margin-bottom: 0;
}
.dossier-section summary {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 16px;
  gap: 10px;
  align-items: start;
  cursor: pointer;
  list-style: none;
}
.dossier-section summary::-webkit-details-marker { display: none; }
.dossier-section summary::after {
  content: "+";
  color: #6f6658;
  font-weight: 760;
  justify-self: end;
}
.dossier-section[open] summary::after { content: "-"; }
.dossier-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(40, 36, 28, .055);
  color: #5d564b;
}
.dossier-icon::before,
.dossier-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}
.dossier-icon.summary::before {
  width: 15px;
  height: 18px;
  border: 1.6px solid currentColor;
  border-radius: 2px;
}
.dossier-icon.summary::after {
  width: 9px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}
.dossier-icon.impact::before {
  width: 19px;
  height: 19px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
}
.dossier-icon.impact::after {
  width: 7px;
  height: 7px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
}
.dossier-icon.repro::before {
  width: 18px;
  height: 13px;
  border-top: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
}
.dossier-icon.repro::after {
  width: 15px;
  height: 1.6px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}
.dossier-icon.acceptance::before {
  width: 17px;
  height: 20px;
  border: 1.6px solid currentColor;
  border-radius: 9px 9px 5px 5px;
}
.dossier-icon.acceptance::after {
  width: 8px;
  height: 4px;
  border-left: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(-45deg);
}
.dossier-section summary strong {
  display: block;
  font-size: 13px;
  font-weight: 660;
  padding-top: 2px;
  line-height: 1.15;
}
.dossier-section summary small {
  display: none;
  color: #6f6658;
  font-size: 11px;
  font-weight: 520;
}
.dossier-section p,
.dossier-section li {
  color: var(--up-ink);
  font-size: 12px;
  line-height: 1.36;
  font-weight: 430;
}
.dossier-section p,
.dossier-section ol,
.dossier-section ul {
  margin: 6px 0 0 42px;
}
.dossier-section ol,
.dossier-section ul {
  padding-left: 18px;
}
.dossier-move-card {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(40, 36, 28, .08);
}
.dossier-move-card summary {
  width: max-content;
  max-width: 100%;
  color: #255f45;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.dossier-move-card form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 10px;
}
.dossier-move-card select,
.dossier-move-card button {
  min-height: 38px;
}
.evidence-viewer {
  padding-bottom: 14px;
}
.evidence-hero-shot,
.evidence-empty-shot {
  display: grid;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid rgba(40, 36, 28, .12);
  border-radius: var(--up-radius-control);
  background: #0b100e;
}
.evidence-hero-shot img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: top;
}
.evidence-empty-shot {
  place-items: center;
  padding: 18px;
  color: var(--up-paper);
  text-align: center;
}
.evidence-empty-shot strong { font-size: 15px; }
.evidence-empty-shot span {
  color: var(--up-muted);
  max-width: 360px;
  font-size: 12px;
}
.evidence-step-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  padding: 8px 10px;
  border: 1px solid rgba(40, 36, 28, .1);
  border-top: 0;
  border-radius: 0 0 var(--up-radius-control) var(--up-radius-control);
  background: rgba(255, 249, 238, .44);
}
.evidence-step-strip a,
.evidence-step-placeholder {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 3px 8px;
  align-items: center;
  padding: 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.evidence-step-strip a.active,
.evidence-step-placeholder.active {
  background: rgba(112, 232, 203, .12);
  border-radius: var(--up-radius-control);
}
.evidence-step-strip b,
.evidence-step-placeholder b {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(37, 95, 69, .24);
  border-radius: 50%;
  color: #24705c;
  font-family: var(--up-font-mono);
  font-size: 12px;
}
.evidence-step-strip span,
.evidence-step-placeholder span {
  color: var(--up-ink);
  font-size: 11px;
  font-weight: 720;
}
.evidence-step-strip small,
.evidence-step-placeholder small {
  min-width: 0;
  color: #6f6658;
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.evidence-footnote {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(40, 36, 28, .1);
  color: #6f6658;
  font-size: 12px;
}
.evidence-footnote a {
  color: #255f45;
  font-weight: 900;
}
.process-panel {
  padding-bottom: 14px;
}
.process-log {
  position: relative;
  display: grid;
  gap: 7px;
  padding-left: 30px;
}
.process-log::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 16px;
  bottom: 21px;
  width: 1px;
  border-radius: 999px;
  background: rgba(91, 86, 76, .18);
}
.process-log-event {
  position: relative;
}
.process-dot {
  position: absolute;
  left: -29px;
  top: 15px;
  width: 15px;
  height: 15px;
  border: 3px solid #fff9ee;
  border-radius: 50%;
  background: #b7ad9d;
  box-shadow: 0 0 0 1px rgba(40, 36, 28, .09);
}
.process-log-event.current .process-dot,
.process-log-event:last-of-type .process-dot {
  background: var(--up-proof);
}
.process-log-event.created .process-dot { background: #b7ad9d; }
.process-log-event.qa_checked .process-dot,
.process-log-event.status_changed .process-dot,
.process-log-event.rerun_verified .process-dot { background: var(--up-proof); }
.process-log-event.rerun_failed .process-dot { background: #9c382a; }
.process-log-event.brief_created .process-dot,
.process-log-event.rerun_requested .process-dot { background: #d99335; }
.process-card {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  min-height: 48px;
  padding: 7px 8px;
  border: 1px solid rgba(40, 36, 28, .09);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .54);
  box-shadow: none;
}
.process-card-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(112, 232, 203, .16);
  color: #24705c;
  font-family: var(--up-font-mono);
  font-size: 10px;
  font-weight: 760;
}
.process-log-event.created .process-card-icon { background: rgba(91, 86, 76, .1); color: #6f6658; }
.process-log-event.status_changed .process-card-icon,
.process-log-event.qa_checked .process-card-icon { background: rgba(112, 232, 203, .22); color: #24705c; }
.process-log-event.brief_created .process-card-icon,
.process-log-event.rerun_requested .process-card-icon { background: rgba(217, 147, 53, .16); color: #7b5218; }
.process-log-event.rerun_failed .process-card-icon { background: rgba(242, 107, 85, .16); color: #9c382a; }
.process-card-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.process-card-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.process-card-head strong {
  font-size: 11px;
  font-weight: 720;
  line-height: 1.2;
}
.process-card-head time {
  color: #6f6658;
  font-family: var(--up-font-mono);
  font-size: 10px;
  font-weight: 720;
  white-space: nowrap;
}
.process-card p,
.process-card-note {
  margin: 0;
  color: #6f6658;
  font-size: 10px;
  line-height: 1.35;
}
.process-transition {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(37, 95, 69, .08);
  color: #255f45;
  font-family: var(--up-font-mono);
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
}
.current-state-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 40px;
  border-color: rgba(37, 95, 69, .48);
  background: rgba(255, 249, 238, .68);
}
.current-state-card .process-card-icon {
  display: block;
  width: auto;
  height: auto;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .14);
  color: #24705c;
  font-size: 9px;
}
.current-state-card small {
  display: inline-block;
  margin-right: 7px;
  color: #6f6658;
  font-family: var(--up-font-mono);
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
}
.current-state-card strong {
  display: inline-block;
  margin-top: 3px;
  color: #255f45;
  font-size: 14px;
  font-weight: 760;
}
.process-time-note {
  position: relative;
  margin: 10px 0 0 30px;
  padding: 9px 0 0 18px;
  border-top: 1px solid rgba(40, 36, 28, .08);
  color: #81786a;
  font-size: 11px;
  font-weight: 450;
}
.process-time-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .72;
}
.process-time-note::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  width: 3px;
  height: 4px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: .72;
}
.finding-side-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .62fr);
  gap: 14px;
}
.compact-qa-card p {
  color: var(--up-ink);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 560;
}
.compact-qa-card small {
  color: #6f6658;
  display: block;
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(40, 36, 28, .08);
  font-size: 11px;
}
.compact-qa-card .dossier-panel-head strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-items: baseline;
  font-size: 20px;
}
.compact-qa-card .dossier-panel-head i {
  position: relative;
  width: 16px;
  height: 18px;
  border: 1.7px solid #24705c;
  border-radius: 10px 10px 5px 5px;
}
.compact-qa-card .dossier-panel-head i::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 8px;
  height: 4px;
  border-left: 1.8px solid #24705c;
  border-bottom: 1.8px solid #24705c;
  transform: rotate(-45deg);
}
.compact-agent-prompt-card {
  display: grid;
  gap: 12px;
  border-color: rgba(112, 232, 203, .38);
  background:
    linear-gradient(145deg, rgba(112, 232, 203, .12), transparent 36%),
    rgba(255, 249, 238, .88);
}
.compact-agent-prompt-card p {
  margin: 0;
  color: #5d564b;
  font-size: 12px;
  font-weight: 580;
  line-height: 1.45;
}
.compact-agent-prompt-card code {
  font-family: var(--up-font-mono);
  font-size: .95em;
}
.agent-prompt-copy {
  justify-self: start;
  min-width: 128px;
  min-height: 38px;
  padding-inline: 14px;
}
.agent-prompt-copy.copied {
  background: #12372e;
  color: #eafff8;
}
.copy-source {
  position: fixed;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.card-qa-panel {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 14px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-panel);
  background: rgba(245, 241, 232, .72);
}
.card-qa-panel > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-qa-panel strong {
  font-family: var(--up-font-mono);
  font-size: 22px;
}
.card-qa-panel ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #5d564b;
}
.card-qa-panel small {
  color: #6f6658;
}
.activity-list {
  display: grid;
  gap: 10px;
}
.activity-list-compact {
  margin: 12px 0 22px;
}
.finding-timeline {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 10px 0 24px;
  padding-left: 26px;
}
.finding-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 17px;
  bottom: 24px;
  width: 2px;
  border-radius: 999px;
  background: rgba(91, 86, 76, .22);
}
.finding-timeline-event {
  position: relative;
  min-width: 0;
}
.finding-timeline-marker {
  position: absolute;
  left: -25px;
  top: 16px;
  width: 18px;
  height: 18px;
  border: 3px solid #fff9ee;
  border-radius: 50%;
  background: #9d9487;
  box-shadow:
    0 0 0 1px rgba(40, 36, 28, .14),
    0 6px 16px rgba(8, 10, 9, .1);
}
.finding-timeline-event:first-child .finding-timeline-marker {
  background: var(--up-proof);
}
.finding-timeline-event.rerun_requested .finding-timeline-marker,
.finding-timeline-event.rerun_verified .finding-timeline-marker { background: #24705c; }
.finding-timeline-event.rerun_failed .finding-timeline-marker { background: #9c382a; }
.finding-timeline-event.brief_created .finding-timeline-marker { background: #d99335; }
.finding-timeline-card {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(40, 36, 28, .11);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .62);
  box-shadow: 0 8px 22px rgba(24, 22, 17, .045);
}
.finding-timeline-event:first-child .finding-timeline-card {
  border-color: rgba(37, 95, 69, .22);
  background:
    linear-gradient(90deg, rgba(112, 232, 203, .5), transparent 52%) left top / 100% 2px no-repeat,
    #fffaf0;
}
.finding-timeline-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.finding-timeline-head time {
  color: #6f6658;
  font-family: var(--up-font-mono);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}
.finding-timeline-head span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(37, 95, 69, .09);
  color: #255f45;
  font-family: var(--up-font-mono);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.finding-timeline-card strong {
  color: var(--up-ink);
  font-size: 14px;
  line-height: 1.18;
}
.finding-timeline-transition {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  padding: 5px 7px;
  border-radius: var(--up-radius-control);
  background: rgba(8, 10, 9, .035);
  color: #5d564b;
  font-family: var(--up-font-mono);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.finding-timeline-transition b {
  color: #255f45;
}
.finding-timeline-meta,
.finding-timeline-body {
  margin: 0;
  color: #6f6658;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.finding-timeline-body {
  padding-top: 4px;
  border-top: 1px solid rgba(40, 36, 28, .08);
}
.finding-timeline-card a {
  color: #255f45;
  font-weight: 900;
}
.finding-timeline-current {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin-top: 1px;
  padding: 5px 8px;
  border: 1px dashed rgba(91, 86, 76, .28);
  border-radius: 999px;
  background: rgba(245, 241, 232, .52);
  color: #6f6658;
  font-size: 12px;
  font-weight: 850;
}
.finding-timeline-current::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #fff9ee;
  border-radius: 50%;
  background: rgba(91, 86, 76, .38);
  transform: translateY(-50%);
}
.finding-timeline-current span {
  font-family: var(--up-font-mono);
  font-size: 10px;
  text-transform: uppercase;
}
.finding-timeline-current strong {
  color: #255f45;
}
.activity-item {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 12px 12px 12px 18px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-control);
  background: rgba(245, 241, 232, .7);
}
.activity-item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 15px;
  bottom: 15px;
  width: 3px;
  border-radius: 999px;
  background: #b8ac9b;
}
.activity-item.rerun_requested::before,
.activity-item.rerun_verified::before { background: #24705c; }
.activity-item.rerun_failed::before { background: #9c382a; }
.activity-item.brief_created::before { background: #d99335; }
.activity-item span {
  display: block;
  color: #6f6658;
  font-size: 12px;
}
.activity-item p {
  margin: 0;
  color: #5d564b;
}
.activity-item a {
  color: #255f45;
  font-weight: 850;
}
.detail-list dt {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 850;
}
.detail-list dd { margin: 0 0 12px; }
.session-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--up-paper-line);
}
.session-block h3 span {
  color: #6f6658;
  font-weight: 500;
}
.step-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}
.step-card,
.evidence-step {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-panel);
  background: var(--up-paper);
}
.step-card img,
.evidence-step img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--up-paper-line);
  border-radius: 4px;
}
.evidence-image {
  display: grid;
  gap: 7px;
}
.evidence-image span {
  color: #255f45;
  font-weight: 850;
}
.step-card span,
.evidence-step span {
  color: #6f6658;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.evidence-errors {
  display: grid;
  gap: 5px;
  padding: 9px 10px;
  border: 1px solid rgba(217, 147, 53, .28);
  border-radius: var(--up-radius-control);
  background: rgba(217, 147, 53, .08);
  color: #5f4f38;
}
.evidence-errors strong {
  color: var(--up-ink);
  font-family: var(--up-font-mono);
  font-size: 11px;
  text-transform: uppercase;
}
.evidence-errors p {
  margin: 0;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.process-list article {
  display: grid;
  grid-template-columns: 70px .6fr 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--up-paper-line);
}
.app-shell .button.ghost {
  background: rgba(8, 10, 9, .04);
  color: var(--up-ink);
  border-color: var(--up-paper-line);
}
.app-shell button:not(.button) {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(37, 95, 69, .24);
  border-radius: var(--up-radius-control);
  background: rgba(112, 232, 203, .18);
  color: var(--up-ink);
  font-weight: 820;
  cursor: pointer;
}
.app-shell .stack-form label {
  color: var(--up-ink);
  font-weight: 850;
}
.app-shell .stack-form input,
.app-shell .stack-form textarea,
.app-shell .stack-form select,
.app-shell .inline-controls select {
  border-color: var(--up-paper-line);
  background: rgba(255, 252, 246, .92);
  color: var(--up-ink);
}
.app-shell .stack-form input:focus,
.app-shell .stack-form textarea:focus,
.app-shell .stack-form select:focus,
.app-shell .inline-controls select:focus {
  outline: 3px solid rgba(112, 232, 203, .34);
  border-color: #255f45;
}
.app-shell .stack-form input[type="checkbox"] {
  width: 22px;
  min-height: 22px;
  accent-color: var(--up-proof);
}
.app-shell .stack-form .helptext {
  color: #6f6658;
  font-weight: 650;
}
.app-shell pre {
  max-width: 100%;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: 12px;
  line-height: 1.55;
}
.brief-grid {
  align-items: start;
}
.brief-panel {
  display: grid;
  gap: 14px;
}
.brief-panel pre {
  max-height: 640px;
  padding: 16px;
  border: 1px solid rgba(8, 10, 9, .1);
  border-radius: var(--up-radius-control);
  background: rgba(8, 10, 9, .94);
  color: var(--up-paper);
}
.brief-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.brief-actions a,
.brief-actions button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(37, 95, 69, .24);
  border-radius: var(--up-radius-control);
  background: rgba(112, 232, 203, .14);
  color: #255f45;
  font-size: 13px;
  font-weight: 850;
}

.personas-head,
.persona-builder-head {
  align-items: flex-start;
  margin-bottom: 22px;
}
.persona-create-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 174px;
  justify-content: center;
}
.persona-create-button span,
.persona-builder-head .button span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(8, 10, 9, .9);
  color: var(--up-paper);
  font-size: 15px;
  line-height: 1;
}
.persona-toolbar {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(320px, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.persona-segments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 44px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-control);
  overflow: hidden;
  background: rgba(255, 249, 238, .74);
}
.persona-segments a {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(40, 36, 28, .08);
  color: #5d564b;
  font-size: 13px;
  font-weight: 850;
}
.persona-segments a:last-child { border-right: 0; }
.persona-segments a.active {
  background: rgba(112, 232, 203, .22);
  color: var(--up-ink);
}
.persona-search {
  justify-self: end;
  display: grid;
  grid-template-columns: minmax(260px, 340px) 48px;
  gap: 10px;
}
.persona-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.persona-search input,
.website-suggest-control input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .72);
  color: var(--up-ink);
  font: inherit;
}
.persona-search input { padding: 0 14px; }
.persona-search button,
.persona-kebab,
.persona-card-actions a,
.persona-card-actions button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .78);
  color: #255f45;
  cursor: pointer;
}
.persona-search svg,
.persona-kebab svg,
.persona-card-actions svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.persona-kebab svg,
.persona-card-actions button svg {
  fill: currentColor;
  stroke: none;
}
.persona-library-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  align-items: start;
}
.persona-card-grid {
  display: grid;
  grid-template-columns: 1.32fr 1fr 1fr;
  gap: 16px;
}
.persona-dossier-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: 14px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-panel);
  background:
    linear-gradient(90deg, rgba(112, 232, 203, .42), transparent 32%) left top / 100% 2px no-repeat,
    rgba(255, 249, 238, .9);
  box-shadow: 0 18px 40px rgba(24, 22, 17, .06);
}
.persona-dossier-card.featured {
  border-color: rgba(112, 232, 203, .48);
  box-shadow: inset 10px 0 0 rgba(112, 232, 203, .9), 0 22px 44px rgba(24, 22, 17, .08);
  padding-left: 26px;
}
.persona-primary-rail {
  position: absolute;
  left: 0;
  top: 78px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #255f45;
  font-family: var(--up-font-mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.persona-dossier-card header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.persona-avatar,
.roster-avatar,
.bundle-symbol,
.website-suggest-icon {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(112, 232, 203, .28), rgba(238, 226, 206, .74));
  color: var(--up-ink);
  font-weight: 950;
}
.persona-avatar {
  position: relative;
  width: 52px;
  height: 52px;
  font-size: 19px;
}
.persona-avatar i {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #fff9ee;
  border-radius: 999px;
  background: #d99a2b;
  color: #fff9ee;
  font-size: 12px;
  font-style: normal;
}
.persona-kicker,
.persona-type,
.bundle-copy em,
.roster-copy small {
  font-family: var(--up-font-mono);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.persona-kicker {
  color: #7a7164;
  font-size: 10px;
  font-weight: 900;
}
.persona-dossier-card h2 {
  margin: 5px 0 0;
  font-size: 19px;
  line-height: 1.02;
}
.persona-type {
  align-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .2);
  color: #25624c;
  font-size: 10px;
  font-weight: 900;
}
.persona-type.buyer,
.persona-type.skeptic {
  background: rgba(224, 162, 42, .16);
  color: #87611c;
}
.persona-dossier-card p {
  margin: 0;
  color: #4f4a41;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.38;
}
.persona-traits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(40, 36, 28, .1);
}
.persona-traits div {
  min-width: 0;
  padding: 0 9px;
  border-right: 1px solid rgba(40, 36, 28, .1);
}
.persona-traits div:first-child { padding-left: 0; }
.persona-traits div:last-child { border-right: 0; padding-right: 0; }
.persona-traits b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: var(--up-ink);
  font-size: 12px;
}
.persona-traits b::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  vertical-align: -2px;
  margin-right: 5px;
}
.persona-traits .trait-frictions::before {
  border-radius: 2px;
  transform: rotate(45deg) scale(.86);
}
.persona-traits .trait-device::before {
  width: 14px;
  height: 10px;
  border-radius: 2px;
  box-shadow: 0 3px 0 -1px currentColor;
}
.persona-traits span {
  display: -webkit-box;
  color: #5d564b;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.persona-chip-row,
.bundle-examples,
.roster-chips,
.scan-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}
.persona-chip-row span,
.bundle-examples b,
.roster-chips b,
.scan-sources b {
  padding: 4px 7px;
  border-radius: 7px;
  background: rgba(112, 232, 203, .16);
  color: #25624c;
  font-size: 11px;
  font-weight: 850;
}
.persona-dossier-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(40, 36, 28, .08);
  color: #6f6658;
  font-size: 12px;
  font-weight: 820;
}
.persona-card-actions {
  display: inline-flex;
  gap: 8px;
}
.persona-card-actions a,
.persona-card-actions button {
  width: 36px;
  height: 36px;
}
.persona-coverage-panel,
.persona-bundle-panel,
.generated-roster-panel,
.website-suggest-card,
.scan-prompt-preview {
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-panel);
  background:
    linear-gradient(90deg, rgba(112, 232, 203, .38), transparent 34%) left top / 100% 2px no-repeat,
    rgba(255, 249, 238, .88);
  box-shadow: 0 18px 40px rgba(24, 22, 17, .06);
}
.persona-coverage-panel {
  position: sticky;
  top: 24px;
  padding: 16px;
}
.coverage-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  color: #255f45;
}
.coverage-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.persona-coverage-panel h2 {
  margin: 0 0 8px;
  font-size: 18px;
}
.persona-coverage-panel p {
  margin: 0 0 18px;
  color: #6f6658;
  font-size: 13px;
}
.coverage-list {
  display: grid;
  margin-bottom: 18px;
  border-top: 1px solid rgba(40, 36, 28, .1);
}
.coverage-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(40, 36, 28, .1);
}
.coverage-row strong,
.coverage-row span {
  display: block;
}
.coverage-row span {
  color: #6f6658;
  font-size: 12px;
}
.coverage-dots {
  display: inline-flex;
  gap: 6px;
}
.coverage-dots i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(37, 95, 69, .16);
}
.coverage-dots i.filled { background: #2c8d75; }
.persona-coverage-panel a {
  color: #255f45;
  font-size: 13px;
  font-weight: 900;
}
.persona-empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-panel);
  background: #fff9ee;
}
.persona-builder-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.persona-builder-head {
  margin-bottom: 16px;
}
.persona-builder-head h1 {
  max-width: 940px;
  font-size: clamp(38px, 3.8vw, 50px);
  line-height: .96;
}
.persona-builder-head .app-head-copy {
  margin-top: 8px;
}
.persona-builder-grid {
  display: grid;
  grid-template-columns: minmax(600px, 1.05fr) minmax(430px, .95fr);
  gap: 14px;
  align-items: start;
}
.persona-bundle-panel,
.generated-roster-panel {
  padding: 13px;
}
.persona-panel-title {
  margin-bottom: 12px;
}
.persona-panel-title h2,
.generated-roster-panel h2 {
  margin: 0 0 6px;
  font-size: 18px;
}
.persona-panel-title p,
.generated-roster-panel p {
  margin: 0;
  color: #6f6658;
  font-size: 13px;
}
.bundle-list,
.roster-list {
  display: grid;
  gap: 8px;
}
.bundle-option {
  position: relative;
  display: grid;
  grid-template-columns: 24px 44px minmax(0, 1fr) minmax(170px, 220px);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 7px 9px;
  border: 1px solid rgba(40, 36, 28, .1);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .62);
  cursor: pointer;
}
.bundle-option.selected {
  border-color: rgba(112, 232, 203, .92);
  box-shadow: inset 8px 0 0 rgba(112, 232, 203, .9);
  background: rgba(255, 249, 238, .94);
}
.bundle-option input,
.roster-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bundle-check,
.roster-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(40, 36, 28, .22);
  border-radius: 5px;
  background: rgba(255, 249, 238, .8);
}
.bundle-option input:checked + .bundle-check,
.roster-row input:checked + .roster-check {
  border-color: rgba(37, 95, 69, .5);
  background: rgba(112, 232, 203, .72);
}
.bundle-option input:checked + .bundle-check::before,
.roster-row input:checked + .roster-check::before {
  content: "✓";
  color: var(--up-ink);
  font-size: 14px;
  font-weight: 950;
}
.bundle-symbol {
  width: 38px;
  height: 38px;
}
.bundle-symbol svg,
.bundle-journeys svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bundle-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.bundle-copy strong {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--up-ink);
  font-size: 15px;
}
.bundle-copy em {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .16);
  color: #25624c;
  font-size: 10px;
  font-style: normal;
}
.bundle-copy small {
  color: #5d564b;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.34;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.bundle-examples b {
  background: rgba(245, 241, 232, .88);
  color: #5d564b;
}
.bundle-journeys {
  display: grid;
  gap: 5px;
  align-self: stretch;
  align-content: center;
  border-left: 1px solid rgba(40, 36, 28, .08);
  padding-left: 10px;
}
.bundle-journeys small {
  color: #6f6658;
  font-family: var(--up-font-mono);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.bundle-journeys span {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}
.bundle-journeys i {
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 28px;
  padding: 2px;
  border: 1px solid rgba(40, 36, 28, .14);
  border-radius: 6px;
  color: #5d564b;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  text-align: center;
}
.bundle-journeys svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.3;
}
.website-suggest-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) minmax(300px, .82fr);
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
}
.website-suggest-icon {
  width: 40px;
  height: 40px;
  color: #255f45;
}
.website-suggest-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.website-suggest-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}
.website-suggest-card p {
  margin: 0;
  color: #6f6658;
  font-size: 12px;
  line-height: 1.35;
}
.website-suggest-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 8px;
}
.website-suggest-control input {
  min-height: 34px;
  padding: 0 12px;
}
.website-suggest-control button,
.manual-persona-link {
  min-height: 34px;
  border: 1px solid rgba(37, 95, 69, .28);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .8);
  color: #255f45;
  font-weight: 900;
  cursor: pointer;
}
.scan-sources {
  grid-column: 3;
  justify-content: flex-end;
}
.scan-sources span,
.scan-sources small {
  color: #6f6658;
  font-size: 11px;
  font-weight: 800;
}
.manual-persona-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 12px 0 8px;
  color: #7a7164;
  font-family: var(--up-font-mono);
  font-size: 10px;
  text-transform: uppercase;
}
.manual-persona-divider::before,
.manual-persona-divider::after {
  content: "";
  height: 1px;
  background: rgba(40, 36, 28, .12);
}
.manual-persona-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-width: 170px;
  margin: 0 auto;
  padding: 0 14px;
}
.manual-persona-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.generated-roster-panel {
  position: sticky;
  top: 24px;
}
.roster-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 7px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(40, 36, 28, .1);
}
.roster-head > div:last-child {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #255f45;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.roster-head button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #255f45;
  font: inherit;
  cursor: pointer;
}
.roster-row {
  display: grid;
  grid-template-columns: 20px 42px minmax(0, 1fr) minmax(138px, auto);
  gap: 10px;
  align-items: center;
  min-height: 43px;
  border-bottom: 1px solid rgba(40, 36, 28, .08);
  cursor: pointer;
}
.roster-avatar {
  width: 36px;
  height: 36px;
  background: rgba(238, 226, 206, .78);
  font-size: 14px;
}
.roster-copy {
  display: grid;
  gap: 4px;
}
.roster-copy strong {
  color: var(--up-ink);
  font-size: 13px;
}
.roster-copy small {
  color: #25624c;
  font-size: 10px;
  font-weight: 900;
}
.roster-chips {
  justify-content: end;
}
.roster-included {
  margin-top: 12px;
  border: 1px solid rgba(40, 36, 28, .1);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .58);
}
.roster-included summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  cursor: pointer;
}
.roster-included summary span {
  color: #5d564b;
  font-weight: 900;
}
.roster-included summary b {
  color: #6f6658;
  font-size: 12px;
}
.roster-included p {
  padding: 0 12px 12px;
}
.scan-prompt-preview {
  display: grid;
  grid-template-columns: minmax(220px, .45fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
}
.scan-prompt-preview[hidden] { display: none; }
.scan-prompt-preview h2 {
  margin: 0 0 6px;
  font-size: 18px;
}
.scan-prompt-preview p {
  margin: 0;
  color: #6f6658;
}
.scan-prompt-preview textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-control);
  background: #fff9ee;
  color: var(--up-ink);
  font-family: var(--up-font-mono);
  font-size: 11px;
}

.synthetic-head,
.custom-persona-head {
  align-items: flex-start;
  margin-bottom: 24px;
}
.synthetic-head h1,
.custom-persona-head h1 {
  max-width: 980px;
}
.custom-persona-head h1 {
  font-size: clamp(42px, 3.85vw, 62px);
  line-height: .94;
}
.custom-persona-head { margin-bottom: 18px; }
.app-shell .button.secondary {
  background: rgba(255, 249, 238, .7);
  border-color: var(--up-paper-line);
  box-shadow: none;
}
.preset-groups-panel,
.custom-users-panel,
.persona-how-panel,
.custom-persona-form,
.custom-guidance-panel,
.preset-compact-panel {
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-panel);
  background:
    linear-gradient(90deg, rgba(112, 232, 203, .38), transparent 34%) left top / 100% 2px no-repeat,
    rgba(255, 249, 238, .88);
  box-shadow: 0 18px 40px rgba(24, 22, 17, .06);
}
.preset-groups-panel {
  padding: 18px;
  margin-bottom: 16px;
}
.persona-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.persona-section-head h2,
.custom-persona-form h2,
.custom-guidance-panel h2,
.preset-compact-panel h2,
.persona-how-panel h2 {
  margin: 0 0 7px;
  font-size: 22px;
  line-height: 1.05;
}
.persona-section-head p,
.custom-guidance-panel p,
.preset-compact-panel p,
.persona-how-panel p {
  margin: 0;
  color: #6f6658;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.45;
}
.persona-section-head a,
.preset-group-card footer a,
.custom-empty-row a {
  color: #255f45;
  font-weight: 900;
}
.preset-group-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.preset-group-card {
  display: grid;
  grid-template-rows: 84px 50px 1fr 40px;
  min-height: 272px;
  padding: 16px;
  border: 1px solid rgba(40, 36, 28, .12);
  border-radius: var(--up-radius-panel);
  background:
    radial-gradient(circle at 16% 0%, rgba(112, 232, 203, .13), transparent 36%),
    rgba(255, 249, 238, .76);
  box-shadow: 0 12px 26px rgba(24, 22, 17, .045);
}
.preset-group-card header {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  min-height: 84px;
  margin: 0;
  overflow: hidden;
}
.preset-icon,
.preset-mini-icon,
.custom-avatar,
.guidance-row > span {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(112, 232, 203, .3), rgba(238, 226, 206, .75));
  color: #0f3328;
  font-weight: 950;
}
.preset-icon {
  width: 54px;
  height: 54px;
}
.preset-icon svg,
.custom-edit-link svg,
.guidance-row svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.preset-group-card h3 {
  display: -webkit-box;
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.04;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.preset-group-card header p,
.preset-group-card footer span,
.custom-user-row p {
  margin: 0;
  color: #6f6658;
  font-size: 13px;
  font-weight: 780;
}
.preset-group-card header p {
  display: -webkit-box;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.preset-chip-row,
.preset-compact-row span {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.preset-chip-row {
  align-content: start;
  align-items: flex-start;
  flex-wrap: nowrap;
  height: 38px;
  padding-top: 8px;
  overflow: hidden;
}
.preset-chip-row span,
.preset-compact-row b {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .18);
  color: #25624c;
  font-size: 10px;
  font-weight: 860;
}
.preset-user-list {
  display: grid;
  gap: 11px;
  align-content: start;
  margin: 0 0 14px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(40, 36, 28, .1);
  list-style: none;
}
.preset-user-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: #4f4a41;
  font-size: 13px;
  font-weight: 820;
}
.preset-user-list span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(40, 36, 28, .12);
  border-radius: 999px;
  background: rgba(255, 249, 238, .78);
  color: #255f45;
  font-size: 10px;
  font-weight: 950;
}
.preset-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  margin-top: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(40, 36, 28, .1);
  color: #5d564b;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.preset-card-action:hover {
  color: #255f45;
}
.preset-card-action b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .18);
  color: #255f45;
  font-size: 18px;
  font-weight: 950;
}
.persona-bottom-grid,
.custom-persona-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 16px;
  align-items: start;
}
.custom-users-panel,
.persona-how-panel,
.custom-persona-form,
.custom-guidance-panel,
.preset-compact-panel {
  padding: 20px;
}
.custom-user-list {
  display: grid;
  gap: 0;
  border: 1px solid rgba(40, 36, 28, .1);
  border-radius: var(--up-radius-panel);
  overflow: hidden;
  background: rgba(255, 249, 238, .55);
}
.custom-user-row,
.custom-empty-row,
.custom-create-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto 38px;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px;
  border-bottom: 1px solid rgba(40, 36, 28, .1);
}
.custom-empty-row,
.custom-create-row {
  grid-template-columns: 46px minmax(0, 1fr) auto;
}
.custom-user-row:last-child,
.custom-empty-row:last-child,
.custom-create-row:last-child {
  border-bottom: 0;
}
.custom-create-row {
  border: 1px dashed rgba(37, 95, 69, .22);
  border-radius: var(--up-radius-control);
  margin: 12px;
  color: inherit;
}
.custom-create-row strong {
  color: #255f45;
  font-size: 14px;
  white-space: nowrap;
}
.custom-avatar {
  width: 42px;
  height: 42px;
  font-size: 14px;
}
.custom-user-row h3,
.custom-empty-row h3,
.custom-create-row h3 {
  margin: 0 0 3px;
  font-size: 16px;
}
.custom-user-row p,
.custom-empty-row p,
.custom-create-row p {
  margin: 0;
  color: #6f6658;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}
.custom-mission-pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .2);
  color: #25624c;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.custom-edit-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-control);
  color: #255f45;
}
.persona-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.persona-timeline::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 12px;
  bottom: 24px;
  width: 2px;
  background: rgba(37, 95, 69, .22);
}
.persona-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
}
.persona-timeline li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--up-proof);
  color: var(--up-ink);
  font-weight: 950;
  z-index: 1;
}
.persona-timeline h3 {
  margin: 0 0 6px;
  font-size: 17px;
}
.custom-head-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.custom-persona-form {
  display: grid;
  gap: 9px;
}
.custom-field {
  display: grid;
  gap: 5px;
}
.custom-field span {
  color: var(--up-ink);
  font-size: 14px;
  font-weight: 900;
}
.custom-field input,
.custom-field select,
.custom-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .66);
  color: var(--up-ink);
  font: inherit;
  font-weight: 640;
}
.field-shell {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .66);
  overflow: hidden;
}
.field-shell i {
  display: grid;
  place-items: center;
  min-height: 42px;
  background: rgba(112, 232, 203, .16);
  color: #255f45;
  font-style: normal;
}
.field-shell svg,
.preset-mini-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.custom-field .field-shell input,
.custom-field .field-shell textarea {
  border: 0;
  border-radius: 0;
  background: transparent;
}
.custom-field input::placeholder,
.custom-field textarea::placeholder {
  color: rgba(79, 74, 65, .45);
  font-weight: 520;
}
.custom-field textarea {
  min-height: 50px;
  resize: vertical;
}
.custom-field b {
  color: #963c36;
  font-size: 12px;
}
.custom-persona-side {
  display: grid;
  gap: 16px;
}
.guidance-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(40, 36, 28, .1);
}
.guidance-row:first-of-type {
  border-top: 0;
}
.guidance-row > span {
  width: 40px;
  height: 40px;
}
.guidance-row h3 {
  margin: 0 0 5px;
  font-size: 16px;
}
.preset-compact-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.preset-compact-row {
  display: grid;
  grid-template-columns: 34px minmax(120px, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 7px;
  border: 1px solid rgba(40, 36, 28, .1);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .58);
}
.preset-mini-icon {
  width: 30px;
  height: 30px;
  color: #255f45;
}
.preset-compact-row strong {
  font-size: 14px;
}
.preset-compact-panel > p {
  margin-top: 12px;
}
.run-console {
  position: relative;
  display: grid;
  padding-left: 46px;
}
.run-side-rail {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 32px;
  padding: 18px 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #242724, #111413);
  color: rgba(245, 241, 232, .72);
  box-shadow: 0 18px 42px rgba(24, 22, 17, .16);
}
.run-side-rail span,
.run-side-rail b {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--up-font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.run-side-rail b { color: var(--up-proof); }
.run-head {
  margin-bottom: 14px;
}
.run-head h1 {
  font-size: clamp(36px, 3.85vw, 50px);
}
.run-console-main {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(360px, .88fr);
  gap: 16px;
  align-items: start;
}
.run-console-left,
.run-console-right {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.run-panel {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--up-paper-line);
  border-radius: var(--up-radius-panel);
  background:
    radial-gradient(circle at 0 0, rgba(112, 232, 203, .12), transparent 34%),
    rgba(255, 249, 238, .82);
  box-shadow: 0 16px 36px rgba(24, 22, 17, .055);
}
.preset-run-panel {
  overflow: hidden;
}
.run-panel h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.05;
}
.run-panel-head,
.quote-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.run-panel-head p {
  margin: 4px 0 0;
  color: #6f6658;
  font-size: 13px;
  font-weight: 760;
}
.run-panel-head a {
  color: #255f45;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.mission-panel select {
  min-height: 42px;
}
.mission-body-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}
.mission-body-row p {
  margin: 0;
  color: #5d564b;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.38;
}
.mission-body-row a {
  padding: 9px 12px;
  border: 1px solid rgba(40, 36, 28, .14);
  border-radius: var(--up-radius-control);
  color: var(--up-ink);
  font-size: 12px;
  font-weight: 900;
}
.mission-scope-preview {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(37, 95, 69, .16);
  border-radius: var(--up-radius-card);
  background: rgba(255, 252, 246, .7);
}
.mission-scope-preview ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mission-scope-preview li {
  display: grid;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(40, 36, 28, .1);
}
.mission-scope-preview li:first-child {
  padding-top: 0;
  border-top: 0;
}
.mission-scope-preview b {
  font-size: 13px;
}
.mission-scope-preview small,
.mission-scope-preview p {
  margin: 0;
  color: #6f6658;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.32;
}
.mission-context-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 10px;
  border: 1px solid rgba(40, 36, 28, .1);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .62);
  overflow: hidden;
}
.mission-context-grid div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 3px 10px;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  padding: 10px 12px;
  border-right: 1px solid rgba(40, 36, 28, .1);
}
.mission-context-grid div:last-child { border-right: 0; }
.mission-meta-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #24312d;
}
.mission-meta-icon svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mission-context-grid span,
.quote-detail-row span,
.safety-list dt {
  display: block;
  color: #6f6658;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.mission-context-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--up-ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.22;
  overflow-wrap: anywhere;
}
.preset-run-panel .launch-preset-grid {
  display: flex;
  gap: 10px;
  margin-right: 0;
  padding: 0 0 2px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.launch-preset-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 8px;
  flex: 0 0 calc((100% - 30px) / 4);
  min-height: 196px;
  padding: 11px;
  border: 1px solid rgba(40, 36, 28, .12);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .66);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.launch-preset-card:hover {
  border-color: rgba(37, 95, 69, .28);
  transform: translateY(-1px);
}
.launch-preset-card:has(input:checked) {
  border-color: rgba(37, 95, 69, .45);
  box-shadow: inset 5px 0 0 rgba(112, 232, 203, .9);
  background: rgba(112, 232, 203, .09);
}
.launch-preset-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.launch-preset-card span {
  color: var(--up-ink);
  font-size: 14px;
  font-weight: 930;
  line-height: 1.05;
}
.launch-preset-card small {
  color: #5d564b;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.32;
}
.launch-preset-card .preset-chip-row {
  min-height: 0;
  padding: 0;
}
.launch-preset-card .preset-chip-row b {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .2);
  color: #25624c;
  font-size: 10px;
  font-weight: 900;
}
.launch-preset-card ul {
  display: grid;
  gap: 7px;
  align-content: start;
  margin: 4px 0 0;
  padding: 10px 0 0;
  border-top: 1px solid rgba(40, 36, 28, .09);
  list-style: none;
}
.launch-preset-card li {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
}
.launch-preset-card li i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .16);
  color: #255f45;
  font-style: normal;
  font-size: 9px;
  font-weight: 950;
}
.launch-preset-card li strong {
  overflow: hidden;
  color: #4f4a41;
  font-size: 10px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.launch-preset-card em {
  align-self: end;
  color: #255f45;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
}
.run-no-preset {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid rgba(40, 36, 28, .12);
  border-radius: 999px;
  background: rgba(255, 249, 238, .72);
  color: #5d564b;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}
.run-no-preset input {
  width: 12px;
  height: 12px;
  accent-color: var(--up-proof);
}
.launch-custom-list ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.launch-custom-list li,
.launch-empty-custom {
  padding: 11px 12px;
  border: 1px dashed rgba(40, 36, 28, .16);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .62);
}
.launch-custom-list label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 850;
}
.launch-empty-custom {
  display: flex;
  align-items: center;
  gap: 12px;
}
.launch-empty-custom > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .18);
  color: #255f45;
  font-weight: 950;
}
.launch-empty-custom strong {
  color: var(--up-ink);
  font-size: 14px;
}
.launch-empty-custom p {
  margin: 2px 0 0;
  color: #6f6658;
  font-size: 13px;
  font-weight: 760;
}
.run-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.run-next-steps div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 6px 10px;
  align-items: center;
}
.run-next-steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .22);
  color: #255f45;
  font-weight: 950;
}
.run-next-steps strong {
  color: var(--up-ink);
  font-size: 13px;
  font-weight: 930;
}
.run-next-steps p {
  margin: 0;
  color: #6f6658;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.32;
}
.run-next-panel {
  padding-block: 12px;
}
.run-quote-card {
  position: sticky;
  top: 18px;
}
.quote-head span {
  padding: 5px 8px;
  border-radius: 999px;
  font-family: var(--up-font-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-head .ready {
  background: rgba(112, 232, 203, .2);
  color: #25624c;
}
.quote-head .warn {
  background: rgba(217, 147, 53, .18);
  color: #875a16;
}
.quote-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 14px;
  border: 1px solid rgba(40, 36, 28, .1);
  border-radius: var(--up-radius-control);
  overflow: hidden;
}
.quote-metrics div {
  min-width: 0;
  padding: 10px 7px;
  border-right: 1px solid rgba(40, 36, 28, .1);
  text-align: center;
}
.quote-metrics div:last-child { border-right: 0; }
.quote-metrics strong {
  display: block;
  color: var(--up-ink);
  font-size: 22px;
  line-height: 1;
}
.quote-metrics span {
  display: block;
  margin-top: 5px;
  color: #6f6658;
  font-size: 11px;
  font-weight: 760;
}
.quote-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
  color: #4f4a41;
  font-weight: 850;
}
.quote-detail-row > div:last-child {
  text-align: right;
}
.run-launch-submit {
  width: 100%;
  min-height: 40px;
  justify-content: center;
}
.run-submit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 8px;
}
.run-more-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 40px;
  border: 1px solid rgba(40, 36, 28, .14);
  border-radius: var(--up-radius-control);
  background: rgba(255, 249, 238, .72);
  color: var(--up-ink);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}
.recent-run-list {
  display: grid;
  gap: 8px;
}
.recent-run-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(40, 36, 28, .1);
}
.recent-run-row:last-child { border-bottom: 0; }
.run-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2b9b7e;
}
.recent-run-row.failed .run-status-dot { background: #c43c35; }
.recent-run-row.queued .run-status-dot,
.recent-run-row.running .run-status-dot,
.recent-run-row.evaluating .run-status-dot { background: #d99335; }
.recent-run-row strong,
.recent-run-row b {
  color: var(--up-ink);
  font-size: 12px;
  font-weight: 930;
}
.recent-run-row b {
  display: inline-block;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(112, 232, 203, .16);
  color: #25624c;
  font-family: var(--up-font-mono);
  font-size: 10px;
  text-transform: uppercase;
}
.recent-run-row.failed b {
  background: rgba(231, 87, 70, .14);
  color: #963c36;
}
.recent-run-row small {
  display: block;
  margin-top: 4px;
  color: #6f6658;
  font-size: 11px;
  font-weight: 760;
}
.recent-run-row em {
  align-self: center;
  color: #255f45;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}
.safety-list {
  display: grid;
  gap: 0;
  margin: 0;
}
.safety-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(40, 36, 28, .1);
}
.safety-list div:last-child { border-bottom: 0; }
.safety-list dd {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #4f4a41;
  font-size: 12px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.safety-valid-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(40, 36, 28, .1);
}
.safety-valid-row > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #25886d;
  color: #fff9ee;
  font-weight: 950;
}
.safety-valid-row strong,
.safety-valid-row small {
  display: block;
}
.safety-valid-row strong {
  color: #255f45;
  font-size: 12px;
  font-weight: 930;
}
.safety-valid-row small {
  color: #6f6658;
  font-size: 11px;
  font-weight: 760;
}
.form-error {
  margin: 0 0 12px;
  color: #963c36;
  font-weight: 850;
}

@media (max-width: 1180px) {
  .hero h1 { font-size: 62px; }
  .section h2, .page-hero h1 { font-size: 46px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brief-body { grid-template-columns: 1fr 1fr; }
  .preset-group-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .launch-preset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .persona-bottom-grid,
  .custom-persona-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .hero-stage { min-height: auto; padding-top: 390px; }
  .hero-proof-shell { inset: 56px 5vw auto; height: 310px; }
  .hero-report { width: 100%; transform: none; padding: 18px; }
  .hero-status-rail { display: none; }
  .problem-section,
  .workflow-section,
  .rerun-section,
  .handoff-section,
  .pricing-head,
  .boundary-section,
  .pricing-faq,
  .auth-page,
  .first-run-panel,
  .safety-callout,
  .proof-grid,
  .split,
  .finding-showcase,
  .wide-finding,
  .two-column,
  .detail-grid,
  .settings-shell,
  .settings-grid,
  .settings-usage-row,
  .settings-plan-facts {
    grid-template-columns: 1fr;
  }
  .workflow-rail,
  .brief-body,
  .kanban-columns,
  .task-brief-stack,
  .boundary-grid,
  .settings-metrics,
  .metric-grid,
  .card-grid,
  .quote-grid,
  .three-up,
  .preset-group-grid,
  .launch-preset-grid {
    grid-template-columns: 1fr;
  }
  .workflow-rail article,
  .workflow-rail article:nth-child(2),
  .workflow-rail article:nth-child(3) {
    transform: none;
    min-height: 260px;
  }
  .side-note { writing-mode: initial; }
  .brief-head,
  .final-cta,
  .footer,
  .app-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .brief-metrics { flex-wrap: wrap; }
  .auth-panel { justify-self: stretch; }
  .app-layout { grid-template-columns: 1fr; }
  .sidebar {
    position: sticky;
    z-index: 25;
    min-width: 0;
    overflow: hidden;
    height: auto;
    padding: 14px 18px 16px;
    gap: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 241, 232, .1);
  }
  .sidebar nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 0 0 4px;
    overflow: visible;
  }
  .sidebar nav a {
    min-height: 36px;
    justify-content: center;
    text-align: center;
    white-space: normal;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.1;
  }
  .nav-full { display: none; }
  .nav-short { display: inline; }
  .sidebar nav a:hover { transform: none; }
  .sidebar nav a.active { box-shadow: inset 0 -3px 0 var(--up-proof); }
  .usage-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    margin-top: 0;
    padding: 10px 12px;
  }
  .usage-box strong {
    margin: 0;
    font-size: 18px;
  }
  .usage-box .meter { grid-column: 1 / -1; }
  .app-main { padding: 24px 20px 40px; }
  .app-head h1 { font-size: 44px; }
  .app-head-compact h1 { font-size: 38px; }
  .custom-head-actions,
  .persona-section-head {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .custom-user-row,
  .custom-empty-row,
  .preset-compact-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .custom-avatar,
  .custom-edit-link,
  .custom-mission-pill {
    justify-self: start;
  }
  .finding-detail-shell {
    padding-left: 0;
  }
  .proof-rail {
    display: none;
  }
  .finding-detail-head,
  .finding-dossier-grid,
  .finding-side-grid {
    grid-template-columns: 1fr;
  }
  .settings-rail {
    display: none;
  }
  .settings-project-table {
    display: grid;
    gap: 8px;
    border: 0;
    background: transparent;
  }
  .settings-project-head {
    display: none;
  }
  .settings-project-row {
    grid-template-columns: 1fr;
    gap: 8px;
    border: 1px solid rgba(40, 36, 28, .1);
    border-radius: 8px;
    background: rgba(255, 249, 238, .62);
  }
  .settings-row-actions {
    justify-content: flex-start;
  }
  .finding-head-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .kanban {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }
  .kanban-column {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .sidebar nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px 10px;
  }
  .sidebar nav a {
    justify-content: flex-start;
    gap: 7px;
    padding: 8px;
  }
  .finding-head-actions {
    gap: 8px;
  }
  .finding-more-actions[open] {
    flex-basis: 100%;
  }
  .finding-head-actions .action-menu-panel {
    position: static;
    width: 100%;
    margin-top: 2px;
    padding: 10px;
    max-height: none;
    overflow: visible;
    box-shadow: 0 12px 26px rgba(24, 22, 17, .16), 0 2px 0 rgba(37, 95, 69, .08);
  }
  .finding-head-actions .archive-reasons span {
    min-height: 32px;
  }
  .site-header {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 18px 16px;
  }
  .brand { width: max-content; }
  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content) 1fr;
    align-items: center;
    width: 100%;
    gap: 9px;
    font-size: 12px;
  }
  .site-nav .button {
    justify-self: end;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }
  .section,
  .page-hero,
  .auth-page {
    padding: 62px 22px;
  }
  .hero-stage {
    display: flex;
    flex-direction: column;
    padding: 22px 22px 58px;
  }
  .hero-stage::before { inset: 18px 14px 28px; }
  .hero-stage::after {
    right: 14px;
    top: 18px;
    width: 54px;
    height: 54px;
  }
  .hero-proof-shell {
    position: relative;
    inset: auto;
    width: 100%;
    height: 330px;
    margin: 26px 0 34px;
    order: 0;
  }
  .hero-copy {
    order: 1;
  }
  .hero-report {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 14px;
  }
  .mission-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero-finding-card {
    margin-top: 16px;
    padding: 14px;
  }
  .hero-finding-card h3 {
    font-size: 18px;
  }
  .mission-strip span:nth-child(n+3),
  .trace-line,
  .report-topline strong {
    display: none;
  }
  .hero h1,
  .page-hero h1,
  .auth-aside h1 {
    font-size: 39px;
  }
  .section h2,
  .final-cta h2 {
    font-size: 36px;
  }
  .lede,
  .section-copy p,
  .section-kicker p,
  .pricing-head p,
  .page-hero p {
    font-size: 16px;
  }
  .dossier-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid article { min-height: 0; }
  .session-quote {
    flex-direction: column;
  }
  .process-timeline article,
  .process-list article,
  .table-row {
    grid-template-columns: 1fr;
  }
  .app-main { padding: 24px 22px 40px; }
  .app-head h1 { font-size: 39px; }
  .app-head-compact h1 { font-size: 34px; }
  .app-head .button,
  .actions,
  .actions .button {
    width: 100%;
  }
  .panel-head {
    align-items: flex-start;
  }
  .metric-grid article,
  .panel,
  .quote-grid article,
  .three-up article {
    padding: 20px;
  }
  .auth-panel { padding: 22px; }
}
