:root {
  --ink: #10263f;
  --ink-soft: #53708e;
  --ink-faint: #7f96ad;
  --surface: #f8efe3;
  --surface-bright: #fffaf2;
  --surface-muted: rgba(255, 250, 242, 0.76);
  --line: rgba(16, 38, 63, 0.12);
  --line-strong: rgba(16, 38, 63, 0.2);
  --accent: #ff6b4a;
  --accent-deep: #ff5132;
  --accent-soft: #ffdacf;
  --success: #118361;
  --success-soft: #ddf8ed;
  --warning: #c47b14;
  --warning-soft: #fff0d2;
  --danger: #c3452f;
  --danger-soft: #ffe0d9;
  --shadow-soft: 0 16px 34px rgba(16, 38, 63, 0.08);
  --shadow-strong: 0 28px 70px rgba(16, 38, 63, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 115, 79, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(82, 154, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #fff9f2 0%, #f7efe3 44%, #f4eadf 100%);
}

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

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

.app-shell {
  width: min(1480px, calc(100vw - 30px));
  margin: 16px auto 44px;
}

.topbar,
.panel,
.hero-card,
.workspace-card,
.queue-card,
.client-shell,
.toast,
.empty-state {
  border: 1px solid var(--line);
  background: var(--surface-muted);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  border-radius: 28px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--accent-deep), #ffa45a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  font-weight: 700;
  font-size: 1.25rem;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.topbar h1,
.hero-card h2,
.panel h2,
.panel h3,
.workspace-card h3,
.queue-card h3,
.request-panel h3,
.client-main h2,
.modal-card h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.04;
}

.topbar h1 {
  font-size: 1.1rem;
}

.topbar p {
  margin: 0;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill,
.status-pill,
.tiny-pill,
.metric-value,
.chip {
  border-radius: 999px;
}

.pill,
.chip,
.tiny-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.pill strong,
.chip strong {
  color: var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  gap: 20px;
  padding: 28px 0 22px;
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 30px;
}

.hero-card h2 {
  margin-top: 12px;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}

.hero-copy {
  max-width: 62ch;
  margin: 18px 0 24px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.hero-actions,
.toolbar-actions,
.button-row,
.mini-actions,
.decision-actions,
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  border: none;
  border-radius: 999px;
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  box-shadow: 0 14px 30px rgba(255, 107, 74, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  border: 1px dashed var(--line-strong);
}

.button-success {
  color: white;
  background: linear-gradient(135deg, #10966b, #14b57f);
  box-shadow: 0 14px 28px rgba(17, 131, 97, 0.24);
}

.button-danger {
  color: white;
  background: linear-gradient(135deg, #c73d27, #db6a56);
  box-shadow: 0 14px 28px rgba(195, 69, 47, 0.24);
}

.hero-points {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-points li {
  color: var(--ink-soft);
}

.hero-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 12px;
}

.hero-mockup {
  display: grid;
  gap: 16px;
}

.window,
.preview-browser,
.client-browser {
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: white;
  border: 1px solid rgba(16, 38, 63, 0.08);
}

.window-header,
.preview-header,
.browser-header {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: #fff4e8;
  border-bottom: 1px solid rgba(16, 38, 63, 0.08);
}

.window-header span,
.preview-header span,
.browser-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(16, 38, 63, 0.16);
}

.window-body {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.hero-banner,
.client-banner {
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: linear-gradient(135deg, #fff0e6, #fff7ef);
  border: 1px solid rgba(255, 107, 74, 0.2);
}

.hero-banner strong,
.client-banner strong {
  color: var(--danger);
}

.mockup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 16px;
}

.preview-page,
.browser-page {
  padding: 14px;
}

.preview-hero,
.browser-hero {
  height: 150px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff885e, #ffd6b2 60%, #fff6e7);
}

.preview-row,
.browser-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.preview-row div,
.browser-row div {
  height: 54px;
  border-radius: 14px;
  background: #f5efe6;
}

.preview-band {
  margin-top: 12px;
  height: 70px;
  border-radius: 18px;
  background: #ebf3ff;
}

.mini-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 8px 4px;
}

.mini-panel h3 {
  font-size: 1.7rem;
}

.mini-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.mini-timeline {
  display: grid;
  gap: 10px;
}

.mini-timeline div {
  padding: 12px 14px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
}

.dot-muted {
  background: rgba(16, 38, 63, 0.22);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 6px 0 22px;
}

.problem-grid .panel {
  padding: 24px;
  border-radius: 24px;
}

.problem-grid h3 {
  margin: 10px 0 8px;
  font-size: 1.5rem;
}

.problem-grid p,
.positioning-copy,
.footer-copy,
.request-card p,
.request-meta strong + span,
.timeline-card p,
.share-block p,
.client-main p,
.empty-state p {
  color: var(--ink-soft);
  line-height: 1.58;
}

.workspace-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
}

.workspace-card,
.queue-card {
  border-radius: var(--radius-xl);
  padding: 22px;
}

.sidebar-card {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}

.flow-list {
  display: grid;
  gap: 12px;
}

.flow-button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.6);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.flow-button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  box-shadow: none;
}

.flow-button span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--danger);
  font-weight: 700;
}

.flow-button:disabled span {
  background: rgba(16, 38, 63, 0.08);
  color: var(--ink-faint);
}

.flow-button.active {
  background: white;
  border-color: rgba(255, 107, 74, 0.28);
  box-shadow: 0 16px 34px rgba(255, 107, 74, 0.12);
}

.flow-button strong {
  display: block;
  margin-bottom: 4px;
}

.flow-button small {
  color: var(--ink-soft);
  line-height: 1.35;
}

.workspace-main {
  display: grid;
  gap: 18px;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.view-toggle {
  display: inline-flex;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.view-pill {
  border: none;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
}

.view-pill.active {
  color: white;
  background: var(--ink);
}

.toolbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

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

.metric-card {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.8rem;
}

.agency-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 18px;
}

.queue-card {
  display: grid;
  gap: 14px;
}

.queue-toolbar {
  display: grid;
  gap: 12px;
}

.quick-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.quick-filter-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(16, 38, 63, 0.06);
}

.quick-filter-chip.active {
  border-color: rgba(255, 107, 74, 0.34);
  box-shadow: 0 14px 24px rgba(255, 107, 74, 0.12);
}

.quick-filter-chip strong {
  font-size: 0.9rem;
}

.search-input,
.select-input,
.input-field,
.textarea-field {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
}

.search-input:focus,
.select-input:focus,
.input-field:focus,
.textarea-field:focus {
  border-color: rgba(255, 107, 74, 0.36);
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.12);
}

.request-list {
  display: grid;
  gap: 12px;
}

.request-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.request-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(16, 38, 63, 0.08);
}

.request-card.active {
  border-color: rgba(255, 107, 74, 0.34);
  box-shadow: 0 18px 36px rgba(255, 107, 74, 0.14);
}

.request-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}

.request-card h4 {
  margin: 6px 0 4px;
  font-size: 1.02rem;
}

.request-card-meta {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 700;
}

.status-draft {
  background: #eef4ff;
  color: #2c538f;
}

.status-in_review {
  background: #eef4ff;
  color: #2c538f;
}

.status-approved {
  background: var(--success-soft);
  color: var(--success);
}

.status-changes_requested {
  background: var(--warning-soft);
  color: var(--warning);
}

.status-overdue {
  background: var(--danger-soft);
  color: var(--danger);
}

.request-panel {
  display: grid;
  gap: 18px;
}

.request-panel .panel {
  padding: 22px;
  border-radius: 28px;
}

.detail-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  flex-wrap: wrap;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 20px;
}

.meta-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.meta-card strong {
  display: block;
  margin-top: 6px;
}

.preview-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 360px;
  gap: 16px;
}

.share-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf8, #fff5e9);
  border: 1px solid var(--line);
}

.share-link-box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
}

.share-link-box code {
  overflow-wrap: anywhere;
  color: var(--ink-soft);
}

.share-grid {
  display: grid;
  gap: 10px;
}

.share-block {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.share-block strong {
  display: block;
  margin: 6px 0 4px;
}

.lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
}

.stack-col {
  display: grid;
  gap: 18px;
}

.form-card,
.timeline-card-shell {
  padding: 22px;
  border-radius: 28px;
}

.user-list {
  display: grid;
  gap: 12px;
}

.user-row {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.user-row h4 {
  margin: 8px 0 6px;
}

.mvp-form {
  display: grid;
  gap: 14px;
}

.form-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  display: grid;
  gap: 14px;
}

.form-fieldset:disabled {
  opacity: 0.6;
}

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

.form-field {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.toggle-card {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 16px;
}

.toggle-card input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 2px;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.7);
}

.timeline-item.success .timeline-dot {
  background: var(--success);
}

.timeline-item.warning .timeline-dot {
  background: var(--warning);
}

.timeline-item.danger .timeline-dot {
  background: var(--danger);
}

.timeline-card-shell .entry {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.timeline-card-shell .entry p {
  margin: 6px 0 0;
}

.client-shell {
  display: grid;
  gap: 18px;
  border-radius: var(--radius-xl);
  padding: 22px;
}

.client-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.client-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
}

.client-sidebar,
.client-main {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.client-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
}

.info-block {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.9);
  border: 1px solid var(--line);
}

.info-block strong,
.info-block span {
  display: block;
}

.info-block span {
  margin-top: 8px;
}

.client-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
}

.client-review-card,
.client-decision-card {
  padding: 18px;
  border-radius: 22px;
  background: #fffdf8;
  border: 1px solid var(--line);
}

.client-decision-card textarea {
  margin: 14px 0 16px;
}

.client-banner.approved {
  background: linear-gradient(135deg, #ebfff8, #f4fff9);
  border-color: rgba(17, 131, 97, 0.16);
}

.client-banner.overdue {
  background: linear-gradient(135deg, #fff1ec, #fff8f5);
  border-color: rgba(195, 69, 47, 0.16);
}

.footer-copy {
  padding: 24px;
  margin-top: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.empty-state {
  padding: 28px;
  border-radius: 28px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  display: none;
  z-index: 40;
}

.toast.show {
  display: block;
}

.toast strong {
  display: block;
  margin-bottom: 6px;
}

.modal {
  border: none;
  padding: 0;
  border-radius: 28px;
  width: min(560px, calc(100vw - 32px));
  box-shadow: 0 32px 80px rgba(16, 38, 63, 0.24);
}

.modal::backdrop {
  background: rgba(16, 38, 63, 0.36);
  backdrop-filter: blur(4px);
}

.modal-card {
  padding: 28px;
  background: white;
}

.modal-card p {
  color: var(--ink-soft);
  line-height: 1.58;
}

@media (max-width: 1240px) {
  .hero-grid,
  .problem-grid,
  .workspace-grid,
  .agency-layout,
  .preview-split,
  .lower-grid,
  .client-layout,
  .client-main,
  .metrics-grid,
  .detail-meta,
  .mockup-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .app-shell {
    width: min(calc(100vw - 18px), 100%);
    margin-top: 8px;
  }

  .topbar,
  .hero-card,
  .workspace-card,
  .queue-card,
  .request-panel .panel,
  .form-card,
  .timeline-card-shell,
  .client-shell,
  .client-sidebar,
  .client-main,
  .footer-copy,
  .problem-grid .panel {
    padding: 18px;
  }

  .topbar {
    position: static;
  }

  .hero-card h2 {
    font-size: 2.55rem;
  }

  .view-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .view-pill {
    flex: 1;
  }

  .button,
  .pill,
  .chip {
    width: auto;
  }

  .client-layout {
    gap: 14px;
  }

  .client-sidebar {
    order: 2;
    gap: 12px;
  }

  .client-main {
    order: 1;
    gap: 14px;
  }

  .client-decision-card {
    order: -1;
    border-color: rgba(255, 107, 74, 0.22);
    box-shadow: 0 16px 28px rgba(255, 107, 74, 0.08);
  }

  .client-decision-card .decision-actions {
    display: grid;
    gap: 10px;
  }

  .client-decision-card .decision-actions .button {
    width: 100%;
  }

  .client-review-card h2,
  .client-decision-card h3 {
    font-size: 1.5rem;
  }

  .info-block {
    padding: 12px 14px;
  }
}


.topbar-pricing-link {
  display: inline-flex;
}

@media (max-width: 720px) {
  .topbar-actions {
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  .topbar-pricing-link {
    display: inline-flex;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ink-faint);
    font-weight: 700;
    justify-content: flex-start;
  }
}


@media (max-width: 760px) {
  .workspace-shell.workspace-dashboard-mode .hero-card:first-child .hero-copy,
  .workspace-shell.workspace-dashboard-mode .hero-card:first-child .hero-points,
  .workspace-shell.workspace-dashboard-mode .hero-card.hero-mockup,
  .workspace-shell.workspace-settings-mode .queue-card,
  .workspace-shell.workspace-settings-mode .request-panel > .panel:first-child .positioning-copy {
    display: none;
  }

  .workspace-shell.workspace-dashboard-mode .hero-card:first-child {
    padding-bottom: 14px;
  }

  .workspace-shell.workspace-dashboard-mode .hero-card:first-child h2,
  .workspace-shell.workspace-settings-mode .request-panel > .panel:first-child h3 {
    font-size: 2rem;
  }
}


@media (max-width: 760px) {
  .workspace-shell.workspace-dashboard-mode .request-panel > .panel:nth-child(2) {
    padding: 14px 16px;
  }

  .workspace-shell.workspace-dashboard-mode .request-panel > .panel:nth-child(2) .detail-header {
    margin-bottom: 8px;
  }

  .workspace-shell.workspace-dashboard-mode .request-panel > .panel:nth-child(2) h3 {
    font-size: 1.45rem;
    line-height: 1.08;
  }

  .workspace-shell.workspace-dashboard-mode .request-panel > .panel:nth-child(2) .positioning-copy {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .workspace-shell.workspace-dashboard-mode .request-panel > .panel:nth-child(2) .tiny-pill {
    padding: 8px 12px;
  }
}


.site-footer {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.72);
  border-radius: 22px;
  padding: 18px 22px;
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.site-footer-copy {
  margin: 0;
  color: var(--ink-faint);
  line-height: 1.5;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer-links a {
  color: var(--ink-soft);
  font-weight: 600;
}

@media (max-width: 760px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
