/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  --ink: #eef1f4;
  --muted: #9ba4af;
  --bg: #0d0f12;
  --panel: #171b20;
  --line: #303640;
  --accent: #b7f36b;
  --danger: #ff6b66;
  --control-height: 42px;
  --control-radius: 10px;
  --control-padding: 18px;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  color: var(--ink);
  background: var(--bg);
  margin: 0;
  font: 16px / 1.6 ui-sans-serif, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

button, input, select {
  font: inherit;
}

.landing {
  align-content: center;
  min-height: 100vh;
  padding: clamp(40px, 11vw, 130px) max(24px, 8vw);
  display: grid;
}

.landing__kicker {
  color: var(--accent);
  letter-spacing: .16em;
  font: 700 12px ui-monospace, monospace;
}

h1 {
  letter-spacing: -.06em;
  margin: 20px 0;
  font-size: clamp(56px, 11vw, 148px);
  line-height: .9;
}

h1 em {
  color: var(--accent);
  font-style: normal;
}

.landing p {
  max-width: 480px;
  color: var(--muted);
  margin: 0;
  font-size: 19px;
}

.landing__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  display: flex;
}

.button {
  width: max-content;
  min-height: var(--control-height);
  padding: 0 var(--control-padding);
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  justify-content: center;
  align-items: center;
  gap: 12px;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
}

.button--primary {
  color: #111;
  border-color: var(--accent);
  background: var(--accent);
  font-weight: 700;
}

.button--quiet {
  color: var(--muted);
}

.auth-page {
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  display: grid;
}

.auth-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 18px;
  width: min(100%, 520px);
  padding: clamp(24px, 5vw, 48px);
}

.auth-card--danger {
  border-color: color-mix(in srgb, var(--danger) 55%, var(--line));
}

.error-code {
  font: 600 12px ui-monospace, monospace;
  color: var(--danger) !important;
}

.auth-card h1 {
  margin: 12px 0;
  font-size: clamp(34px, 7vw, 60px);
}

.eyebrow {
  color: var(--accent);
  letter-spacing: .14em;
  text-transform: uppercase;
  font: 700 11px ui-monospace, monospace;
}

.auth-card p {
  color: var(--muted);
}

.access-shell {
  min-height: 100vh;
  padding: 96px max(20px, 5vw) 64px;
}

.access-header {
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding-bottom: 28px;
  display: flex;
}

.access-header h1 {
  margin: 10px 0 0;
  font-size: clamp(38px, 7vw, 76px);
}

.access-nav {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.access-nav a {
  color: var(--muted);
}

.workspace-header {
  z-index: 30;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #0d0f12f5;
  border-bottom: 1px solid #242a30;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 52px);
  display: flex;
  position: fixed;
  inset: 0 0 auto;
}

.workspace-brand {
  color: #eef1f4;
  letter-spacing: .08em;
  white-space: nowrap;
  align-items: center;
  gap: 10px;
  font: 700 11px / 1 ui-monospace, monospace;
  text-decoration: none;
  display: inline-flex;
}

.workspace-brand-mark {
  color: #101318;
  background: #b7f36b;
  border-radius: 8px;
  place-items: center;
  width: 30px;
  height: 30px;
  font: 800 17px ui-sans-serif, sans-serif;
  display: grid;
}

.workspace-nav {
  color: #a2ada8;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  display: flex;
}

.workspace-nav a {
  color: #eef1f494;
  text-decoration: none;
  transition: color .16s;
}

.workspace-nav a:hover, .workspace-nav a:focus-visible {
  color: #eef1f4;
}

.workspace-nav a.is-active {
  color: #b7f36b;
}

.workspace-email {
  color: #84928e;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 260px;
  font: 600 10px ui-monospace, monospace;
  overflow: hidden;
}

.dashboard-contextbar {
  background: #101318;
  border-bottom: 1px solid #242a30;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 0 clamp(20px, 4vw, 52px);
  display: flex;
}

.access-page-heading {
  padding-top: 0;
}

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

.access-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 14px;
  padding: 22px;
}

.access-card h2 {
  margin: 0 0 14px;
  font-size: 21px;
}

.access-card--wide {
  grid-column: 1 / -1;
}

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

.access-row {
  border-top: 1px solid var(--line);
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 12px;
  padding: 12px 0;
  display: grid;
}

.access-row:first-child {
  border-top: 0;
}

.access-row small {
  color: var(--muted);
  display: block;
}

.access-form {
  gap: 12px;
  display: grid;
}

.access-form label {
  color: var(--muted);
  gap: 5px;
  font-size: 13px;
  display: grid;
}

.access-form input, .access-form select {
  width: 100%;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #101318;
  border-radius: 8px;
  padding: 10px 12px;
}

.access-form textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid var(--line);
  resize: vertical;
  background: #101318;
  border-radius: 8px;
  padding: 10px 12px;
}

.access-form > button {
  width: max-content;
  min-height: var(--control-height);
  padding: 0 var(--control-padding);
  color: #101318;
  border-radius: var(--control-radius);
  background: var(--accent);
  cursor: pointer;
  border: 0;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
}

.notice {
  border: 1px solid color-mix(in srgb, var(--danger) 45%, var(--line));
  color: #ffd2cf;
  background: #291b1d;
  border-radius: 10px;
  padding: 12px 14px;
}

.notice--success {
  color: #dcf8b8;
  background: #172615;
  border-color: #6e9d47;
}

.notice--error {
  color: #ffd2cf;
  background: #291b1d;
  border-color: #b75a58;
}

.notice--info {
  border-color: var(--line);
  color: var(--muted);
  background: #11151a;
}

.button--danger {
  color: #fff;
  border-color: var(--danger);
  background: #9d3633;
  font-weight: 700;
}

.button--danger:hover, .button--danger:focus-visible {
  color: #fff;
  background: #c84c47;
}

.access-action {
  min-width: 128px;
  min-height: var(--control-height);
  padding: 0 var(--control-padding);
  cursor: pointer;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.role-select {
  width: 100%;
  min-height: 34px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #101318;
  border-radius: 7px;
  padding: 0 8px;
  font: 600 12px ui-monospace, monospace;
}

.access-action--danger {
  border-color: color-mix(in srgb, var(--danger) 70%, var(--line));
  color: #ffaaa5;
  background: #321b1d;
}

.access-action--danger:hover, .access-action--danger:focus-visible {
  color: #fff;
  border-color: var(--danger);
  background: #8f302e;
}

.access-action--success {
  border-color: color-mix(in srgb, var(--accent) 70%, var(--line));
  color: var(--accent);
  background: #1b2b1b;
}

.access-action--success:hover, .access-action--success:focus-visible {
  color: #111;
  border-color: var(--accent);
  background: var(--accent);
}

.field-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.field-help code {
  color: var(--accent);
}

.section-head-row {
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  display: flex;
}

.task-edit {
  justify-items: start;
  gap: 12px;
  display: grid;
}

.task-edit-panel {
  border: 1px solid var(--line);
  background: #101318;
  border-radius: 10px;
  gap: 12px;
  width: min(100%, 760px);
  padding: 16px;
  display: grid;
}

.task-edit-panel label {
  color: var(--muted);
  gap: 6px;
  font-size: 14px;
  display: grid;
}

.task-edit-panel input, .task-edit-panel textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--bg);
  font: inherit;
  border-radius: 8px;
  padding: 11px 12px;
}

.assignment-status {
  color: var(--muted);
  margin-bottom: 0;
}

.assignment-status strong {
  color: var(--accent);
}

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

.task-create-trigger {
  white-space: nowrap;
}

.task-dialog {
  width: min(760px, 100vw - 28px);
  max-height: min(860px, 100vh - 28px);
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--panel);
  resize: both;
  border-radius: 18px;
  min-width: min(560px, 100vw - 28px);
  min-height: min(560px, 100vh - 28px);
  padding: 0;
  overflow: auto;
  box-shadow: 0 28px 80px #00000073;
}

.task-dialog--expanded {
  width: min(1180px, 100vw - 28px);
  height: min(900px, 100vh - 28px);
}

.task-dialog::backdrop {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: #000000b8;
}

.task-dialog form {
  padding: clamp(20px, 4vw, 36px);
}

.dialog-head {
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 26px;
  display: flex;
}

.dialog-head-actions {
  align-items: center;
  gap: 8px;
  display: flex;
}

.dialog-expand {
  color: var(--muted);
  border: 1px solid var(--line);
  cursor: pointer;
  background: none;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
}

.dialog-expand:hover, .dialog-expand:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

.dialog-head h2 {
  letter-spacing: -.04em;
  margin: 8px 0 4px;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1;
}

.dialog-head p {
  max-width: 480px;
  color: var(--muted);
  margin: 0;
}

.dialog-close {
  color: var(--muted);
  border: 1px solid var(--line);
  cursor: pointer;
  background: none;
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 25px;
  line-height: 1;
}

.dialog-close:hover, .dialog-close:focus-visible {
  color: var(--ink);
  border-color: var(--accent);
}

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

.task-form-grid label {
  color: var(--muted);
  gap: 6px;
  font-size: 13px;
  display: grid;
}

.task-form-grid input, .task-form-grid select, .task-form-grid textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #101318;
  border-radius: 8px;
  padding: 11px 12px;
}

.task-form-grid input:focus, .task-form-grid select:focus, .task-form-grid textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 60%, transparent);
  outline-offset: 1px;
}

.task-form-full {
  grid-column: 1 / -1;
}

.dialog-actions {
  justify-content: end;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  display: flex;
}

.dialog-actions .button {
  cursor: pointer;
  min-width: 124px;
}

.landing__actions .button {
  min-width: 136px;
}

.archive-task-button {
  min-width: 128px;
}

.dialog-actions .button:disabled {
  cursor: wait;
  opacity: .58;
}

.dialog-resize-hint {
  color: #7f8c87;
  margin-top: 20px;
  font: 600 10px ui-monospace, monospace;
}

.concept-field {
  align-content: start;
}

.brief-template-row {
  gap: 10px;
  display: grid;
}

.brief-template-row > .button {
  justify-self: start;
}

.brief-contract-copy {
  white-space: pre-wrap;
}

.invite-card {
  margin-bottom: 18px;
}

.invite-link-field {
  color: var(--muted);
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  display: grid;
}

.invite-link-field input {
  color: var(--accent);
}

.invite-claim-form {
  margin-top: 24px;
}

.upload-dropzone {
  cursor: pointer;
  background: #11161b;
  border: 1px dashed #45515c;
  border-radius: 9px;
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-top: 4px;
  padding: 10px 12px;
  color: var(--ink) !important;
  gap: 2px 9px !important;
  display: grid !important;
}

.upload-dropzone:hover, .upload-dropzone:focus-within {
  border-color: var(--accent);
  background: #182018;
}

.upload-dropzone > span {
  color: var(--accent);
  grid-row: 1 / span 2;
  font-size: 21px;
}

.upload-dropzone strong {
  font-size: 12px;
}

.upload-dropzone small {
  color: var(--muted);
  font-size: 10px;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.concept-upload-grid {
  grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  gap: 8px;
  margin-top: 8px;
  display: grid;
}

.concept-upload-thumb {
  min-width: 0;
  position: relative;
}

.concept-upload-thumb img {
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #0e1115;
  border-radius: 7px;
  width: 100%;
  display: block;
}

.concept-upload-thumb button {
  width: 22px;
  height: 22px;
  color: var(--ink);
  cursor: pointer;
  background: #14191fdd;
  border: 1px solid #56616c;
  border-radius: 50%;
  place-items: center;
  padding: 0;
  display: grid;
  position: absolute;
  top: 4px;
  right: 4px;
}

.concept-upload-thumb small {
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 3px;
  font-size: 9px;
  display: block;
  overflow: hidden;
}

.submit-warning {
  border: 1px solid color-mix(in srgb, var(--danger) 55%, var(--line));
  background: #291b1d;
  border-radius: 12px;
  margin-top: 10px;
  padding: 16px;
}

.submit-warning strong {
  color: #ffd2cf;
}

.submit-warning p {
  color: var(--muted);
  margin: 6px 0 0;
}

.readonly-proposal {
  gap: 16px;
  display: grid;
}

.readonly-proposal > div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.readonly-proposal span {
  color: var(--muted);
  font-size: 13px;
  display: block;
}

.readonly-proposal strong {
  margin-top: 3px;
  font-size: 22px;
  display: block;
}

.readonly-proposal p {
  white-space: pre-wrap;
  color: var(--ink);
  margin: 4px 0 0;
}

.proposal-review-list {
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.proposal-review-row {
  border-top: 1px solid var(--line);
  grid-template-columns: 1.5fr .8fr .6fr .8fr 1.4fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  display: grid;
}

.proposal-review-row > div {
  min-width: 0;
}

.proposal-review-row strong {
  color: var(--ink);
  display: block;
}

.proposal-review-row small, .proposal-review-row span {
  color: var(--muted);
  font-size: 12px;
  display: block;
}

.proposal-review-row p {
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--ink);
  margin: 3px 0 0;
  overflow: hidden;
}

.concept-workbench {
  position: relative;
  overflow: hidden;
}

.concept-copy {
  color: #dce4e1;
  white-space: pre-wrap;
  max-width: 72ch;
  margin: 0 0 18px;
}

.concept-gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  display: grid;
}

.concept-gallery-thumb {
  min-width: 0;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  background: #11151a;
  border: 1px solid #2a3138;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

.concept-gallery-thumb:hover, .concept-gallery-thumb:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.concept-gallery-thumb img, .concept-gallery-thumb video {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0d0f12;
  width: 100%;
  display: block;
}

.file-thumb {
  aspect-ratio: 16 / 10;
  width: 100%;
  color: var(--accent);
  background: #0d0f12;
  place-items: center;
  font: 700 20px ui-monospace, monospace;
  display: grid;
}

.concept-gallery-thumb span {
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 8px 10px;
  font: 600 10px ui-monospace, monospace;
  display: block;
  overflow: hidden;
}

.concept-viewer {
  width: min(980px, 100vw - 36px);
  max-width: none;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #11151a;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 28px 80px #0000008c;
}

.concept-viewer--full {
  width: calc(100vw - 24px);
  height: calc(100vh - 24px);
}

.concept-viewer::backdrop {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #000000c2;
}

.concept-viewer-shell {
  grid-template-rows: auto 1fr;
  height: 100%;
  display: grid;
}

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

.concept-viewer-head h2 {
  letter-spacing: -.03em;
  margin: 7px 0 0;
  font-size: clamp(20px, 3vw, 30px);
}

.concept-viewer-body {
  grid-template-columns: minmax(0, 1fr) 240px;
  min-height: 0;
  display: grid;
}

.concept-viewer-canvas {
  background: #0b0e11;
  place-items: center;
  min-height: 420px;
  padding: 24px;
  display: grid;
}

.concept-viewer-canvas img {
  object-fit: contain;
  max-width: 100%;
  max-height: 70vh;
  display: block;
}

.concept-viewer-canvas video, .concept-viewer-canvas iframe {
  object-fit: contain;
  border: 0;
  width: 100%;
  height: min(70vh, 640px);
  display: block;
}

.concept-viewer-body aside {
  border-left: 1px solid var(--line);
  flex-direction: column;
  gap: 7px;
  padding: 24px;
  display: flex;
}

.concept-viewer-body aside span, .concept-viewer-body aside small {
  color: var(--muted);
  font: 600 10px ui-monospace, monospace;
}

.concept-viewer-body aside strong {
  overflow-wrap: anywhere;
}

.concept-viewer-body aside p {
  color: var(--muted);
  margin-top: auto;
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .proposal-review-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proposal-review-note {
    grid-column: 1 / -1;
  }

  .proposal-review-row .button {
    width: max-content;
  }
}

@media (max-width: 720px) {
  .access-grid {
    grid-template-columns: 1fr;
  }

  .access-card--wide {
    grid-column: auto;
  }

  .access-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (max-width: 620px) {
  .task-dialog {
    min-width: calc(100vw - 28px);
    min-height: calc(100vh - 28px);
  }

  .concept-viewer-body {
    grid-template-rows: minmax(280px, 1fr) auto;
    grid-template-columns: 1fr;
  }

  .concept-viewer-canvas {
    min-height: 280px;
  }

  .concept-viewer-body aside {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-head-row {
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }

  .task-form-grid {
    grid-template-columns: 1fr;
  }

  .task-form-full {
    grid-column: auto;
  }

  .task-create-trigger {
    justify-content: center;
    width: 100%;
  }

  .access-header .access-nav {
    width: 100%;
  }
}

.dashboard-app {
  color: #eef1f4;
  background: #0d0f12;
  min-height: 100vh;
  padding-top: 72px;
}

.dashboard-jump, .agency-notice {
  display: none;
}

.dashboard-topbar {
  border-bottom: 1px solid #242a30;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 52px);
  display: flex;
}

.dashboard-crumb {
  color: #84928e;
  letter-spacing: .08em;
  align-items: center;
  gap: 10px;
  font: 600 10px ui-monospace, monospace;
  display: flex;
}

.dashboard-crumb b {
  color: #53605c;
  font-weight: 400;
}

.dashboard-top-actions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.dashboard-top-actions > .notice {
  z-index: 20;
  max-width: 360px;
  position: fixed;
  bottom: 24px;
  right: 24px;
}

.role-pill {
  color: #0d0f12;
  background: #b7f36b;
  border: 1px solid #b7f36b;
  border-radius: 999px;
  padding: 5px 10px;
  font: 700 10px ui-monospace, monospace;
}

.topbar-link {
  color: #aeb8b5;
  text-underline-offset: 4px;
  font-size: 13px;
  text-decoration: underline;
}

.dashboard-jump {
  color: #83928b;
  text-transform: uppercase;
  background: #101511;
  border-bottom: 1px solid #242a30;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(20px, 4vw, 52px);
  font: 600 10px ui-monospace, monospace;
  display: flex;
}

.dashboard-jump a {
  color: #abb6b1;
  text-decoration: none;
}

.dashboard-jump a:hover {
  color: #b7f36b;
}

.dashboard-content {
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(18px, 2.5vw, 36px) clamp(18px, 4vw, 52px) 90px;
}

.dashboard-hero {
  justify-content: space-between;
  align-items: end;
  gap: 36px;
  padding-bottom: 34px;
  display: flex;
}

.dashboard-eyebrow {
  color: #82928b;
  letter-spacing: .1em;
  margin: 0 0 12px;
  font: 600 11px ui-monospace, monospace;
}

.dashboard-hero h1 {
  color: #eef1f4;
  letter-spacing: -.06em;
  white-space: nowrap;
  max-width: none;
  margin: 0;
  font-size: clamp(24px, 6.8vw, 104px);
  line-height: .88;
}

.dashboard-hero h1 em, .dashboard-section-heading h2 em {
  color: #b7f36b;
  font-style: normal;
}

.dashboard-copy {
  color: #9da9a5;
  max-width: 470px;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.budget-stamp {
  border-left: 1px solid #b7f36b;
  min-width: 200px;
  padding: 14px 0 9px 18px;
}

.budget-stamp span, .budget-stamp small {
  color: #7d8e86;
  letter-spacing: .1em;
  font: 600 9px ui-monospace, monospace;
  display: block;
}

.budget-stamp strong {
  color: #b7f36b;
  letter-spacing: -.04em;
  margin: 9px 0 4px;
  font-size: clamp(22px, 3vw, 34px);
  display: block;
}

.dashboard-metrics {
  border: 1px solid #2a3138;
  border-radius: 10px;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  overflow: hidden;
}

.dashboard-metrics article {
  background: #171b20;
  border-right: 1px solid #2a3138;
  min-height: 0;
  padding: 18px 20px;
}

.dashboard-metrics article:last-child {
  border-right: 0;
}

.dashboard-metrics span {
  color: #7d8d87;
  letter-spacing: .08em;
  font: 600 11px ui-monospace, monospace;
  display: block;
}

.dashboard-metrics strong {
  color: #b7f36b;
  margin: 13px 0 2px;
  font-size: 34px;
  line-height: 1;
  display: block;
}

.dashboard-metrics small {
  color: #95a29d;
  font-size: 14px;
}

.dashboard-section-heading {
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin: 42px 0 18px;
  display: flex;
}

.dashboard-section-heading h2 {
  color: #b7f36b;
  letter-spacing: -.04em;
  white-space: nowrap;
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1;
}

.dashboard-section-heading > span {
  color: #b7f36b;
  letter-spacing: .02em;
  font: 800 15px / 1.25 ui-monospace, monospace;
}

.dashboard-section-heading > a {
  color: #aebbb5;
  font-size: 12px;
  text-decoration: none;
}

.dashboard-scroll-link {
  color: #aebbb5;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-size: 12px;
}

.dashboard-scroll-link:hover, .dashboard-scroll-link:focus-visible {
  color: #b7f36b;
}

.dashboard-section-heading > a span {
  color: #b7f36b;
  font-size: 17px;
}

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

.priority-card {
  min-height: 0;
  color: inherit;
  background: #171b20;
  border: 1px solid #2a3138;
  border-radius: 10px;
  flex-direction: column;
  padding: 16px;
  text-decoration: none;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex;
  position: relative;
}

.priority-card:hover, .priority-card:focus-visible {
  border-color: #b7f36b;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px #00000040;
}

.priority-card-top {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.status-chip {
  color: #101318;
  background: #b7f36b;
  border-radius: 999px;
  width: max-content;
  padding: 5px 9px;
  font: 700 10px ui-monospace, monospace;
  display: inline-flex;
}

.status-chip--under_review {
  color: #21180b;
  background: #f2c879;
}

.status-chip--assigned, .status-chip--in_progress {
  color: #d5e4ff;
  background: #2e4c72;
}

.status-chip--reopened {
  color: #2b1715;
  background: #f19b88;
}

.task-id {
  color: #83908b;
  font: 600 10px ui-monospace, monospace;
}

.priority-card h3 {
  letter-spacing: -.025em;
  max-width: 330px;
  margin: 18px 0 8px;
  font-size: 21px;
  line-height: 1.12;
}

.priority-card p {
  color: #a1aba7;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.priority-meta {
  color: #83908b;
  gap: 16px;
  margin-top: 14px;
  padding-top: 12px;
  font: 600 11px ui-monospace, monospace;
  display: flex;
}

.priority-meta b {
  color: #eef1f4;
}

.dashboard-empty {
  color: #929f9a;
  text-align: center;
  border: 1px dashed #3a424b;
  border-radius: 10px;
  grid-column: 1 / -1;
  padding: 48px 20px;
}

.activity-panel {
  background: #171b20;
  border: 1px solid #2a3138;
  border-radius: 10px;
  margin-top: 32px;
  padding: 2px 20px 18px;
}

.activity-note {
  color: #84918c;
  font: 600 10px ui-monospace, monospace;
}

.activity-empty {
  color: #9aa6a1;
  margin: 0;
  padding: 18px 0 2px;
  font-size: 13px;
}

.review-panel {
  background: #171b20;
  border: 1px solid #2a3138;
  border-radius: 10px;
  margin: 32px 0 14px;
  padding: 2px 20px 18px;
}

.review-list {
  gap: 0;
  display: grid;
}

.review-row {
  color: #eef1f4;
  border-top: 1px solid #262d34;
  grid-template-columns: 1fr 1.4fr .6fr auto;
  align-items: center;
  gap: 18px;
  min-height: 0;
  padding: 12px 0;
  text-decoration: none;
  display: grid;
}

.review-row > div span {
  color: #7f8c87;
  letter-spacing: .06em;
  font: 600 11px ui-monospace, monospace;
  display: block;
}

.review-row > div strong {
  color: #dce4e1;
  margin-top: 4px;
  font-size: 14px;
  display: block;
}

.review-row > div small {
  color: #84918b;
  margin-top: 3px;
  font-size: 12px;
  display: block;
}

.review-action {
  color: #b7f36b;
  white-space: nowrap;
  font: 600 13px ui-monospace, monospace;
}

.task-board-section {
  margin-top: 50px;
}

.task-toolbar {
  border-top: 1px solid #2a3138;
  border-bottom: 1px solid #2a3138;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  display: flex;
}

.task-search {
  color: #82908b;
  align-items: center;
  gap: 9px;
  min-width: min(340px, 100%);
  display: flex;
}

.task-search span {
  font-size: 22px;
}

.task-search input {
  color: #eef1f4;
  background: none;
  border: 0;
  outline: 0;
  width: 100%;
  padding: 8px 0;
}

.status-tabs {
  gap: 5px;
  display: flex;
  overflow: auto;
}

.status-tabs button {
  white-space: nowrap;
  color: #85918c;
  cursor: pointer;
  background: none;
  border: 1px solid #0000;
  border-radius: 999px;
  padding: 7px 10px;
  font: 600 10px ui-monospace, monospace;
}

.status-tabs button:hover, .status-tabs button.active {
  color: #101318;
  background: #b7f36b;
  border-color: #b7f36b;
}

.task-list {
  display: grid;
}

.task-row {
  border-bottom: 1px solid #262d34;
  grid-template-columns: minmax(240px, 2fr) .8fr .8fr .7fr 34px;
  align-items: center;
  gap: 18px;
  min-height: 0;
  padding: 12px 0;
  display: grid;
}

.task-row > div span {
  color: #7f8c87;
  letter-spacing: .06em;
  font: 600 11px ui-monospace, monospace;
  display: block;
}

.task-row > div strong {
  color: #dce4e1;
  margin-top: 4px;
  font-size: 14px;
  display: block;
}

.task-row h3 {
  color: #eef1f4;
  letter-spacing: -.025em;
  margin: 6px 0 0;
  font-size: 19px;
}

.task-open {
  color: #b7f36b;
  border: 1px solid #3b454e;
  border-radius: 50%;
  place-items: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
  display: grid;
}

.task-open:hover {
  color: #101318;
  background: #b7f36b;
}

@media (max-width: 920px) {
  .dashboard-hero {
    flex-direction: column;
    align-items: start;
  }

  .budget-stamp {
    min-width: 170px;
  }

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

  .dashboard-metrics article:nth-child(2) {
    border-right: 0;
  }

  .dashboard-metrics article:nth-child(-n+2) {
    border-bottom: 1px solid #2a3138;
  }

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

  .task-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 620px) {
  .workspace-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
  }

  .workspace-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 14px;
    width: 100%;
  }

  .workspace-email {
    max-width: 180px;
  }

  .dashboard-contextbar {
    margin-top: 86px;
    padding: 12px 18px;
  }

  .dashboard-topbar {
    display: none;
  }

  .dashboard-content {
    padding: 34px 18px 60px;
  }

  .dashboard-hero h1 {
    font-size: clamp(24px, 8vw, 52px);
  }

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

  .dashboard-metrics article {
    padding: 17px 14px;
  }

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

  .dashboard-section-heading {
    flex-direction: column;
    align-items: start;
  }

  .dashboard-section-heading h2 {
    font-size: clamp(20px, 7vw, 30px);
  }

  .task-row {
    grid-template-columns: 1fr 30px;
    gap: 8px;
  }

  .task-row > div:not(:first-child) {
    display: none;
  }

  .status-tabs {
    width: 100%;
  }

  .review-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .review-action {
    grid-area: 1 / 2 / span 2;
    place-self: center end;
  }

  .access-shell {
    padding-top: 150px;
  }
}

.agency-portal {
  color: #eef1f4;
  background: #0d0f12;
  min-height: 100vh;
  padding-top: 72px;
}

.agency-topbar {
  border-bottom: 1px solid #242a30;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 52px);
  display: flex;
}

.agency-brand {
  color: #eef1f4;
  letter-spacing: .06em;
  white-space: nowrap;
  align-items: center;
  gap: 10px;
  font: 700 11px / 1 ui-monospace, monospace;
  text-decoration: none;
  display: inline-flex;
}

.agency-brand-mark {
  color: #101318;
  background: #b7f36b;
  border-radius: 8px;
  place-items: center;
  width: 30px;
  height: 30px;
  font: 800 18px ui-sans-serif, sans-serif;
  display: grid;
}

.agency-topbar nav {
  color: #a2ada8;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  display: flex;
}

.agency-topbar nav a {
  color: #b7f36b;
  text-decoration: none;
}

.agency-hero {
  border-bottom: 1px solid #242a30;
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(18px, 2.5vw, 36px) clamp(18px, 4vw, 52px) clamp(24px, 2.5vw, 34px);
}

.agency-eyebrow {
  color: #84928d;
  letter-spacing: .1em;
  margin: 0 0 13px;
  font: 600 10px ui-monospace, monospace;
}

.agency-hero h1 {
  color: #eef1f4;
  letter-spacing: -.06em;
  white-space: nowrap;
  max-width: none;
  margin: 0;
  font-size: clamp(24px, 6.8vw, 100px);
  line-height: .9;
}

.agency-hero h1 em {
  color: #b7f36b;
  font-style: normal;
}

.agency-notice {
  background: #171b20;
  border: 1px solid #2a3138;
  border-radius: 11px;
  align-items: center;
  gap: 16px;
  max-width: 1680px;
  margin: 20px auto 0;
  padding: 18px clamp(18px, 4vw, 52px);
  display: flex;
}

.agency-notice > span {
  color: #b7f36b;
  font-size: 20px;
}

.agency-notice strong {
  color: #eef1f4;
  font-size: 15px;
}

.agency-notice p {
  color: #929f9a;
  margin: 4px 0 0;
  font-size: 14px;
}

.agency-notice a {
  color: #b7f36b;
  white-space: nowrap;
  margin-left: auto;
  font-size: 13px;
  text-decoration: none;
}

.agency-guidelines, .agency-calls {
  max-width: 1680px;
  margin: 0 auto;
  padding: 42px clamp(18px, 4vw, 52px) 0;
}

.agency-section-heading {
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 20px;
  display: flex;
}

.agency-section-heading h2 {
  color: #b7f36b;
  letter-spacing: -.05em;
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.agency-milestones .agency-section-heading h2 {
  color: #b7f36b;
  white-space: nowrap;
}

.agency-milestones .agency-section-heading h2 em {
  color: inherit;
  font-style: normal;
}

.agency-section-heading > p {
  color: #929f9a;
  max-width: 330px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.agency-section-heading > span {
  color: #b7f36b;
  letter-spacing: .02em;
  font: 800 15px / 1.25 ui-monospace, monospace;
}

.guideline-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 10px;
  display: grid;
}

.guideline-grid article {
  background: #171b20;
  border: 1px solid #2a3138;
  border-radius: 10px;
  grid-template-columns: 40px minmax(0, 1fr);
  align-content: start;
  align-self: start;
  align-items: baseline;
  column-gap: 0;
  min-height: 0;
  padding: 12px 14px;
  display: grid;
}

.guideline-grid article > span {
  color: #b7f36b;
  letter-spacing: .02em;
  font: 800 15px / 1.25 ui-monospace, monospace;
}

.guideline-grid h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.guideline-grid p {
  color: #9da8a3;
  grid-column: 1 / -1;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.agency-calls {
  padding-bottom: 90px;
}

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

.agency-task-card {
  color: #eef1f4;
  background: #171b20;
  border: 1px solid #2a3138;
  border-radius: 10px;
  flex-direction: column;
  min-height: 224px;
  padding: 20px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.agency-task-card:hover, .agency-task-card:focus-visible {
  border-color: #b7f36b;
  transform: translateY(-3px);
}

.agency-task-card-top {
  color: #b7f36b;
  justify-content: space-between;
  font: 600 11px ui-monospace, monospace;
  display: flex;
}

.agency-task-card-top small {
  color: #83908b;
}

.agency-task-card h3 {
  letter-spacing: -.03em;
  margin: 27px 0 9px;
  font-size: 24px;
  line-height: 1.15;
}

.agency-task-card p {
  color: #a0aba6;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.agency-task-card > div:last-child {
  color: #84918b;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  font: 600 11px ui-monospace, monospace;
  display: flex;
}

.agency-task-card > div:last-child strong {
  color: #b7f36b;
  text-align: right;
}

.agency-empty {
  color: #929f9a;
  text-align: center;
  border: 1px dashed #3a424b;
  border-radius: 10px;
  grid-column: 1 / -1;
  padding: 48px 20px;
}

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

.freelancer-card {
  background: #171b20;
  border: 1px solid #2a3138;
  border-radius: 10px;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-height: 178px;
  padding: 20px;
  display: grid;
}

.freelancer-card h3 {
  color: #eef1f4;
  overflow-wrap: anywhere;
  margin: 8px 0;
  font-size: 19px;
}

.freelancer-card p {
  color: #99a6a0;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.freelancer-avatar {
  color: #101318;
  background: #b7f36b;
  border: 1px solid #b7f36b;
  border-radius: 50%;
  place-items: center;
  width: 42px;
  height: 42px;
  font-weight: 800;
  display: grid;
}

.freelancer-meta {
  color: #b7f36b;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  font: 600 9px ui-monospace, monospace;
  display: flex;
}

.agency-milestones {
  border-top: 1px solid #242a30;
  margin-top: 70px;
  padding-top: 36px;
}

.milestone-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  display: grid;
}

.milestone-grid article {
  background: #171b20;
  border: 1px solid #2a3138;
  border-radius: 10px;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 14px 16px;
  display: grid;
}

.milestone-grid span {
  color: #b7f36b;
  letter-spacing: .02em;
  font: 800 15px / 1.25 ui-monospace, monospace;
}

.milestone-grid small {
  color: #84918b;
  letter-spacing: .04em;
  white-space: nowrap;
  font: 600 12px / 1.25 ui-monospace, monospace;
}

.milestone-grid strong {
  color: #eef1f4;
  min-width: 0;
  font-size: 18px;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .agency-task-grid, .freelancer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .agency-topbar {
    flex-direction: column;
    align-items: start;
    gap: 16px;
    padding: 18px;
  }

  .agency-topbar nav {
    justify-content: space-between;
    width: 100%;
  }

  .agency-hero {
    padding-top: 50px;
  }

  .agency-hero h1 {
    font-size: clamp(18px, 6vw, 48px);
  }

  .agency-notice {
    flex-wrap: wrap;
    align-items: start;
    margin: 14px 18px 0;
  }

  .agency-notice a {
    width: 100%;
    margin-left: 36px;
  }

  .agency-section-heading {
    flex-direction: column;
    align-items: start;
  }

  .agency-milestones .agency-section-heading h2 {
    font-size: clamp(18px, 6vw, 36px);
  }

  .guideline-grid, .agency-task-grid, .milestone-grid, .freelancer-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=apps_web_src_app_globals_1wvyn-h.css.map*/