/* ============================================================================
   CaliberGuild — design system (Phase 10 revamp)
   Server-rendered, no framework, no build step. Mobile-first.
   Tokens are dark-ready (see [data-theme="dark"] at the bottom) but v1 ships
   light only. Reserve color for meaning (indigo = action, green = paid,
   gold = caution / AI-prefilled).
   ============================================================================ */

/* --- Fonts (self-hosted, OFL; latin variable woff2 from the design export) -- */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('/static/fonts/HankenGrotesk.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('/static/fonts/Newsreader.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/static/fonts/JetBrainsMono.woff2') format('woff2');
}

/* --- Tokens ----------------------------------------------------------------- */
:root {
  /* type */
  --font-sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* ink / text */
  --ink: #1b1c22;
  --body: #3a3c44;
  --body-soft: #5b5e66;
  --muted: #73767f;
  --faint: #9a9da6;
  --fainter: #b6b9c2;

  /* indigo (primary accent) */
  --indigo: #2b3a8c;
  --indigo-ink: #ffffff;
  --indigo-12: #eef1fb;
  --indigo-20: #e0e5f8;
  --indigo-30: #d6dcf6;
  --indigo-glow: rgba(125, 140, 255, 0.18);

  /* green (paid / success) */
  --green: #0f7a52;
  --green-12: #e7f4ee;
  --green-30: #bfe3d2;

  /* gold (draft / caution / AI-prefilled) */
  --gold: #9a6700;
  --gold-line: #e0b25b;
  --gold-12: #fbf2dd;
  --gold-30: #f0e0b0;

  /* surfaces + lines */
  --bg: #f4f5f7;
  --bg-2: #f0f1f3;
  --bg-3: #eceef1;
  --card: #ffffff;
  --card-2: #fbfbfc;
  --line: #e6e7ec;
  --line-2: #e2e4ea;
  --line-3: #d8dade;
  --line-input: #cfd2d8;

  /* shadow */
  --shadow-sm: 0 1px 2px rgba(20, 22, 40, 0.04);
  --shadow-md: 0 1px 2px rgba(20, 22, 40, 0.04), 0 12px 30px rgba(20, 22, 40, 0.05);
  --shadow-lg: 0 12px 30px rgba(20, 22, 40, 0.07);
  --shadow-indigo: 0 12px 30px rgba(43, 58, 140, 0.22);

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --maxw: 1040px;
}

/* --- Reset / base ----------------------------------------------------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--indigo); }
/* a11y: a single consistent keyboard focus ring (don't rely on color alone) */
:focus-visible { outline: 2px solid var(--indigo); outline-offset: 2px; border-radius: 4px; }
a:focus-visible, .btn:focus-visible, button:focus-visible,
.operator:focus-visible, .dropzone:focus-visible { outline: 2px solid var(--indigo); outline-offset: 2px; }
img { max-width: 100%; display: block; }
hr { border: none; border-top: 1px solid var(--line); margin: 22px 0; }

/* --- Typography ------------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.12;
}
h1 { font-size: 30px; }
h2 { font-size: 24px; }
h3 { font-size: 19px; letter-spacing: -0.01em; }
p { margin: 0 0 12px; }
.lead { font-size: 17px; line-height: 1.55; color: var(--body-soft); }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.hint { color: var(--muted); font-size: 12.5px; margin: 2px 0 6px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 10px;
}
.eyebrow.accent { color: var(--indigo); }
.mono { font-family: var(--font-mono); }

/* --- Legal pages (server-rendered markdown body) ----------------------------- */
.legal-body h2 { margin-top: 30px; font-size: 20px; }
.legal-body h3 { margin-top: 18px; }
.legal-body p, .legal-body li { color: var(--body-soft); line-height: 1.6; }
.legal-body ul, .legal-body ol { margin: 0 0 12px; padding-left: 22px; }
.legal-body table {
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 0 0 16px;
  font-size: 14px;
}
.legal-body th, .legal-body td {
  border: 1px solid var(--line-3);
  padding: 8px 12px;
  text-align: left;
  white-space: nowrap;
}
.legal-body th { background: var(--bg-2); color: var(--ink); }

.rate {
  font-family: var(--font-mono);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
code {
  font-family: var(--font-mono);
  background: var(--bg-3);
  padding: 1px 5px;
  border-radius: 5px;
  font-size: 12px;
}

/* --- Shell: nav + footer ---------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 60px;
  padding: 0 20px;
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.nav .brand {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 21px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  view-transition-name: brand;
}
.nav .brand span { color: var(--indigo); }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a {
  font-size: 13.5px;
  color: var(--body);
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  background: var(--indigo);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}
/* Win over the generic `.nav-links a` color (higher specificity) so the white
   text isn't overridden to dark-on-indigo — including on hover. */
.nav-links a.nav-cta,
.nav-links a.nav-cta:hover {
  color: #fff;
  background: var(--indigo);
}
.nav-links a.nav-cta:hover { background: #243079; }
/* hide secondary links on small screens; brand + primary CTA stay */
@media (max-width: 640px) {
  .nav-links a.collapsible { display: none; }
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--card-2);
  margin-top: 56px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}
.footer .brand {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
}
.footer .brand span { color: var(--indigo); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--body); }
.footer-fine { font-size: 12.5px; color: var(--faint); }

/* --- Layout ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 16px 8px;
}
.container.wide { max-width: var(--maxw); }
.section { padding: 8px 0; }
.page-head { margin: 6px 0 18px; }
.cols { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 820px) {
  .cols.two { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .cols.even { grid-template-columns: 1fr 1fr; }
}

/* --- Cards ------------------------------------------------------------------ */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin: 14px 0;
  box-shadow: var(--shadow-sm);
}
.card.flat { box-shadow: none; }
.card.pad-lg { padding: 26px; }
.card-title { font-family: var(--font-serif); font-weight: 500; font-size: 18px; color: var(--ink); margin: 0 0 4px; }
.card-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.divider { border-top: 1px solid var(--line); margin: 16px 0; }

/* --- Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  height: 46px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: 11px;
  border: 1px solid var(--line-3);
  background: #fff;
  color: var(--body);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.05s;
}
.btn:hover { background: var(--bg-2); }
.btn:active { transform: translateY(1px); }
.btn.block { width: 100%; }
.btn.primary { background: var(--indigo); color: var(--indigo-ink); border-color: var(--indigo); }
.btn.primary:hover { background: #243079; }
.btn.success { background: var(--green); color: #fff; border-color: var(--green); }
.btn.success:hover { background: #0c6644; }
.btn.danger-link, .btn.link {
  background: none;
  border: none;
  color: var(--indigo);
  width: auto;
  height: auto;
  padding: 8px 0;
}
.btn.link.inline { display: inline; padding: 0; }
.btn.danger-link { color: #b42318; }
.btn.sm { height: 38px; font-size: 13.5px; border-radius: var(--radius-sm); padding: 0 14px; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; }

/* --- Forms ------------------------------------------------------------------ */
.stack { display: flex; flex-direction: column; gap: 6px; margin: 14px 0; }
.stack > label { font-weight: 600; font-size: 13.5px; color: var(--body); margin-top: 8px; }
label { font-weight: 600; font-size: 13.5px; color: var(--body); }
input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 16px; /* 16px avoids iOS zoom-on-focus */
  border: 1px solid var(--line-input);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--indigo-12);
}
textarea { resize: vertical; min-height: 90px; }
.row { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 520px) { .row { grid-template-columns: repeat(3, 1fr); } }
.row > div { display: flex; flex-direction: column; gap: 6px; }
.row label { font-weight: 600; font-size: 13.5px; }
.actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
@media (min-width: 520px) {
  .actions.inline { flex-direction: row; flex-wrap: wrap; align-items: center; }
}

/* --- Badges ----------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  vertical-align: middle;
  line-height: 1.4;
}
.badge.indigo { background: var(--indigo-12); color: var(--indigo); border-color: var(--indigo-30); }
.badge.ok { background: var(--green-12); color: var(--green); border-color: var(--green-30); }
.badge.warn { background: var(--gold-12); color: var(--gold); border-color: var(--gold-30); }
.badge.neutral { background: var(--bg-2); color: var(--body); border-color: var(--line); }
.badge.ai { background: var(--gold-12); color: var(--gold); border-color: var(--gold-30); }
.badge.ai::before { content: "\2728"; }     /* sparkle */
.badge.expert { background: var(--indigo-12); color: var(--indigo); border-color: var(--indigo-30); }

/* --- Chips ------------------------------------------------------------------ */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.chip {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--body);
}
.chip.expert {
  background: var(--indigo-12);
  border-color: var(--indigo-30);
  color: var(--indigo);
  font-weight: 600;
}

/* --- Notes / messages ------------------------------------------------------- */
.note {
  padding: 12px 14px;
  border-radius: 12px;
  margin: 12px 0;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.note.ok { background: var(--green-12); color: var(--green); border-color: var(--green-30); }
.note.warn { background: var(--gold-12); color: var(--gold); border-color: var(--gold-30); }
.note.indigo { background: var(--indigo-12); color: var(--indigo); border-color: var(--indigo-30); }
.note.err { background: #fdeceb; color: #b42318; border-color: #f3c9c5; }
.note.neutral { background: var(--bg-2); color: var(--body); border-color: var(--line); }
.msg { min-height: 20px; font-size: 14px; margin: 10px 0 0; color: var(--muted); }
.msg.error { color: #b42318; }

/* --- Dropzone (flagship CV upload) ------------------------------------------ */
.dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 44px 20px;
  border: 1.5px dashed var(--line-3);
  border-radius: var(--radius);
  background: var(--card-2);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.dropzone:hover { border-color: var(--indigo-30); }
.dropzone.dragover {
  border-color: var(--indigo);
  background: var(--indigo-12);
  box-shadow: 0 0 0 4px var(--indigo-glow);
}
.dz-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--indigo-12);
  color: var(--indigo);
  font-size: 24px;
  margin-bottom: 4px;
}
.dz-title { font-weight: 600; font-size: 17px; color: var(--ink); }
.dz-sub { color: var(--muted); font-size: 14px; }

/* --- Progress: spinner + parse stepper -------------------------------------- */
.progress { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.spinner {
  width: 22px; height: 22px;
  border: 3px solid var(--line);
  border-top-color: var(--indigo);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.stepper { display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
.stepper.row-steps { flex-direction: row; gap: 8px; align-items: center; }
.step { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--muted); }
.step .dot {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  background: var(--bg-2); color: var(--fainter);
  border: 1px solid var(--line);
}
.step.done .dot { background: var(--indigo-12); color: var(--indigo); border-color: var(--indigo-30); }
.step.active { color: var(--ink); font-weight: 600; }
.step.active .dot { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.step.done { color: var(--body); }

/* progress stepper header (1 Drop CV · 2 Review · 3 Publish) */
.flow-steps {
  display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center;
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--muted);
}
.flow-steps .cur { color: var(--indigo); font-weight: 600; }
.flow-steps .sep { color: var(--fainter); }

/* --- Engagement lifecycle stepper (Proposed -> Funded -> Released) ----------- */
.lifecycle { display: flex; align-items: center; gap: 0; margin: 18px 0; }
.lifecycle .node { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 0 0 auto; }
.lifecycle .node .ring {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--bg-2); border: 2px solid var(--fainter);
}
.lifecycle .node.done .ring,
.lifecycle .node.active .ring { background: var(--indigo); border-color: var(--indigo); }
.lifecycle .node .label { font-size: 12px; color: var(--muted); }
.lifecycle .node.done .label, .lifecycle .node.active .label { color: var(--ink); font-weight: 600; }
.lifecycle .bar { flex: 1 1 auto; height: 2px; background: var(--line-2); margin: 0 8px; align-self: flex-start; margin-top: 6px; }
.lifecycle .bar.done { background: var(--indigo); }

/* --- Operator cards (browse) ------------------------------------------------ */
.operators { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 16px 0; }
@media (min-width: 720px) { .operators { grid-template-columns: 1fr 1fr; } }
.operator {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
}
.operator:hover { border-color: var(--indigo-30); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.op-head { display: flex; align-items: center; gap: 13px; }
.avatar {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--indigo-12);
  color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 16px;
  letter-spacing: 0.02em;
}
.avatar.lg { width: 64px; height: 64px; font-size: 21px; }
.op-name { font-family: var(--font-serif); font-weight: 500; font-size: 18px; color: var(--ink); }
.op-title { font-size: 13.5px; color: var(--muted); }

/* --- Held-balance breakdown (engagement money) ------------------------------ */
.breakdown {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin: 14px 0;
}
.breakdown .brow {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.breakdown .brow:last-child { border-bottom: none; }
.breakdown .brow.total { background: var(--card-2); font-weight: 600; color: var(--ink); }
.breakdown .brow .v { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.breakdown .brow .lbl { color: var(--muted); }

/* live-preview mini card (review screen) */
.preview-card {
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  position: sticky;
  top: 76px;
}

/* --- Utilities -------------------------------------------------------------- */
.hidden { display: none !important; }
.center { text-align: center; }
.spacer { height: 8px; }
.stack-gap { display: flex; flex-direction: column; gap: 12px; }
.flex { display: flex; gap: 12px; align-items: center; }
.flex.wrap { flex-wrap: wrap; }
.between { justify-content: space-between; }
.grow { flex: 1; }

/* --- Empty states ----------------------------------------------------------- */
.empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}
.empty .empty-title { font-family: var(--font-serif); font-size: 19px; color: var(--ink); margin-bottom: 6px; }

/* --- Flagship: CV parse card + AI pill -------------------------------------- */
.ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--indigo-12);
  border: 1px solid var(--indigo-30);
  color: var(--indigo);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}
.sparkle { display: inline-block; animation: cg-sparkle 2.6s ease-in-out infinite; }
.badge.ai::before { display: inline-block; animation: cg-sparkle 2.6s ease-in-out infinite; }
@keyframes cg-sparkle {
  0%, 100% { opacity: 0.55; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.12); }
}

.parse-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 18px;
  box-shadow: var(--shadow-md);
}
.parse-msg {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 21px;
  color: var(--ink);
  margin: 0 0 14px;
  min-height: 28px;
}
.parse-bar {
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}
.parse-bar > span {
  position: absolute;
  top: 0;
  height: 100%;
  width: 42%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(43, 58, 140, 0), var(--indigo), rgba(43, 58, 140, 0));
  animation: cg-shimmer 1.5s ease-in-out infinite;
}
@keyframes cg-shimmer {
  0% { left: -42%; }
  100% { left: 100%; }
}
.parse-fine {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--faint);
}

/* per-step dot used by the live parse stepper (upload.js paints classes) */
.step .spin {
  width: 19px; height: 19px; flex-shrink: 0;
  border: 2px solid var(--indigo-30);
  border-top-color: var(--indigo);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* --- Legacy bridges (older class names kept working until each page is
       restyled in 10b/10c; harmless once unused) ------------------------------ */
.topbar { display: flex; align-items: center; gap: 10px; padding: 0 20px; height: 60px;
  background: var(--card); border-bottom: 1px solid var(--line); }
.brand { font-family: var(--font-serif); font-weight: 500; font-size: 21px; color: var(--ink); text-decoration: none; }
.tag { color: var(--muted); font-size: 13px; }

/* --- View Transitions (silky cross-page; pure CSS, progressive) ------------- */
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.22s;
  }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* --- Dark theme (tokens only; opt-in, not shipped in v1 light-first) --------- */
[data-theme="dark"] {
  --ink: #f2f3f5;
  --body: #d4d6db;
  --body-soft: #b7bac1;
  --muted: #8c8f98;
  --faint: #6f727b;
  --fainter: #5f626b;
  --bg: #0f1014;
  --bg-2: #16181d;
  --bg-3: #1c1f26;
  --card: #16181d;
  --card-2: #14161b;
  --line: #262931;
  --line-2: #2b2e37;
  --line-3: #353945;
  --line-input: #3a3e4a;
  --indigo: #8a9bef;
  --indigo-12: #1c2340;
  --indigo-20: #232c4f;
  --indigo-30: #2c3766;
  --green: #4cc08a;
  --green-12: #16271f;
  --gold: #d8a64a;
  --gold-12: #2a2310;
}
