/* Statiq Console — Design System CSS
   Big Shoulders Display · Hanken Grotesk · Space Mono via Google Fonts
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;800;900&family=Hanken+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ---- FONT STACKS ---- */
:root {
  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, 'SFMono-Regular', monospace;
}

/* ---- LIGHT MODE TOKENS ---- */
:root {
  --paper:        #F6F1E7;
  --paper-2:      #EDE5D4;
  --surface:      #FFFFFF;
  --surface-2:    #FBF8F1;
  --ink:          #1B1A17;
  --ink-2:        #55504A;
  --ink-3:        #8C8676;
  --line:         #E1D9C8;
  --line-2:       #D2C8B3;
  --line-strong:  #403C34;
  --spruce:       #14543F;
  --spruce-deep:  #0D3D2D;
  --spruce-soft:  #DBE8E1;
  --on-spruce:    #F6F1E7;
  --green-fg:     #176A4F;
  --brass:        #E79F36;
  --brass-deep:   #C2671A;
  --brass-soft:   #F6E7C2;
  --on-brass:     #1B1A17;
  --signal:       #C03A28;
  --signal-deep:  #97291A;
  --signal-soft:  #F6DDD7;
  --on-signal:    #F6F1E7;
  --ok:           #1A6E4F;
  --warn:         #E79F36;
  --err:          #C03A28;
  --shadow-hard-sm: 2px 2px 0 0 rgba(27,26,23,0.42);
  --shadow-hard:    4px 4px 0 0 rgba(27,26,23,0.48);
  --shadow-hard-lg: 6px 6px 0 0 rgba(27,26,23,0.52);
  --shadow-soft:    0 8px 28px -12px rgba(27,26,23,0.34);
  color-scheme: light;
}

/* ---- SPACING / RADII / MOTION / TYPE SCALE ---- */
:root {
  --space-1: 4px;  --space-2: 8px;   --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px;  --space-7: 48px; --space-8: 64px;
  --r-sm: 4px; --r-md: 8px; --r-lg: 14px; --r-pill: 999px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur:  180ms;
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --tracking-label: 0.14em;
  --leading-body:   1.6;
}

/* ---- DARK MODE (OS preference) ---- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #15140F; --paper-2: #1C1A13; --surface: #221F17; --surface-2: #2A271E;
    --ink: #F2ECDD; --ink-2: #B8B09D; --ink-3: #837C6C;
    --line: #322E24; --line-2: #423D30; --line-strong: #F2ECDD;
    --spruce: #176A4F; --spruce-deep: #2E9B72; --spruce-soft: rgba(22,48,37,0.33);
    --on-spruce: #F2ECDD; --green-fg: #6BD0A6;
    --brass: #CE9430; --brass-deep: #F8C159; --brass-soft: rgba(58,46,20,0.33);
    --signal: #E37763; --signal-deep: #EF8E7C; --signal-soft: rgba(58,32,25,0.33);
    --on-signal: #15140F; --ok: #45B98C; --warn: #CE9430; --err: #E37763;
    --shadow-hard-sm: none; --shadow-hard: none; --shadow-hard-lg: none;
    --shadow-soft: 0 10px 32px -10px rgba(0,0,0,0.6);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --paper: #15140F; --paper-2: #1C1A13; --surface: #221F17; --surface-2: #2A271E;
  --ink: #F2ECDD; --ink-2: #B8B09D; --ink-3: #837C6C;
  --line: #322E24; --line-2: #423D30; --line-strong: #F2ECDD;
  --spruce: #176A4F; --spruce-deep: #2E9B72; --spruce-soft: rgba(22,48,37,0.33);
  --on-spruce: #F2ECDD; --green-fg: #6BD0A6;
  --brass: #CE9430; --brass-deep: #F8C159; --brass-soft: rgba(58,46,20,0.33);
  --signal: #E37763; --signal-deep: #EF8E7C; --signal-soft: rgba(58,32,25,0.33);
  --on-signal: #15140F; --ok: #45B98C; --warn: #CE9430; --err: #E37763;
  --shadow-hard-sm: none; --shadow-hard: none; --shadow-hard-lg: none;
  --shadow-soft: 0 10px 32px -10px rgba(0,0,0,0.6);
  color-scheme: dark;
}

/* ---- BASE RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-padding-top: calc(54px + var(--space-5)); }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
code { font-family: var(--font-mono); font-size: 0.875em; }
pre  { font-family: var(--font-mono); }

/* ---- TYPE UTILITIES ---- */
.s-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.04;
  color: var(--ink);
}
.s-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.18;
  color: var(--ink);
}
.s-label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  color: var(--ink-2);
}
.s-mono {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--ink);
}
.s-link {
  color: var(--green-fg);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  transition: border-color var(--dur) var(--ease);
}
.s-link:hover { border-color: var(--green-fg); }

/* ---- DECO RULE ---- */
.deco-rule {
  border: 0;
  height: 6px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: transparent;
}

/* ---- BLOCK (card primitive) ---- */
.block {
  background: var(--surface);
  border: 2px solid var(--line-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-hard);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 13px 20px;
  color: var(--on-spruce);
  background: var(--spruce);
  border: 2px solid var(--line-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-hard);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  vertical-align: middle;
}
.btn:hover  { transform: translate(-1px,-1px); box-shadow: var(--shadow-hard-lg); }
.btn:active { transform: translate(2px,2px);   box-shadow: var(--shadow-hard-sm); }
.btn:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; }
.btn--secondary { background: var(--surface); color: var(--ink); }
.btn--danger    { background: var(--signal); color: var(--on-signal); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border-color: transparent;
}
.btn--ghost:hover  { background: var(--spruce-soft); transform: none; box-shadow: none; }
.btn--ghost:active { transform: none; box-shadow: none; }
.btn--sm { padding: 8px 13px; font-size: var(--text-xs); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

/* ---- FORM FIELDS ---- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field-label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  color: var(--ink-2);
}
.field-hint { font-size: var(--text-xs); color: var(--ink-3); margin-top: 2px; line-height: 1.4; }
.input {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--surface);
  border: 2px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: 11px 14px;
  width: 100%;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  appearance: auto;
}
.input::placeholder { color: var(--ink-3); }
.input:focus {
  outline: none;
  border-color: var(--spruce);
  box-shadow: 3px 3px 0 0 var(--spruce);
}
.input--mono { font-family: var(--font-mono); font-size: var(--text-sm); }

/* ---- STATUS PILLS ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px 3px 7px;
  border-radius: var(--r-pill);
  border: 2px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  white-space: nowrap;
}
.pill::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: var(--r-pill);
  background: var(--ink-3);
  flex-shrink: 0;
}
.pill--live  { background: var(--spruce-soft); }
.pill--live::before  { background: var(--ok); }
.pill--build { background: var(--brass-soft); }
.pill--build::before { background: var(--warn); }
.pill--fail  { background: var(--signal-soft); }
.pill--fail::before  { background: var(--err); }

/* ---- CONSOLE SHELL ---- */
.c-header {
  background: var(--surface);
  border-bottom: 2px solid var(--line-strong);
  position: sticky;
  top: 0;
  z-index: 20;
}
.c-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-5);
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.c-header__left  { display: flex; align-items: center; gap: var(--space-3); min-width: 0; flex: 1; overflow: hidden; }
.c-header__right { display: flex; align-items: center; gap: var(--space-2); flex-shrink: 0; }

.c-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--spruce);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.c-wordmark:hover { color: var(--spruce-deep); }

.c-sep { color: var(--line-2); font-size: var(--text-sm); user-select: none; flex-shrink: 0; }

.c-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-width: 0;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}
.c-breadcrumb a {
  color: var(--ink-3);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.c-breadcrumb a:hover { color: var(--green-fg); }
.c-breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-bc-sep { color: var(--line-2); user-select: none; }

.c-main {
  max-width: 1100px;
  margin: 0 auto var(--space-6);
  padding: 0 var(--space-5);
}

/* ---- REPO PARSED CHIP ---- */
.c-repo-parsed {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border: 2px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--spruce-soft);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--ink);
}

/* ---- STEP LIST ---- */
.c-step { display: flex; gap: var(--space-3); align-items: flex-start; }
.c-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--brass-soft);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}

/* ---- GAP SPACER ---- */
.c-gap { height: 16px; }

/* ---- LAYOUT HELPERS ---- */
.c-stack     { display: flex; flex-direction: column; gap: var(--space-4); }
.c-stack--sm { gap: var(--space-3); }
.c-stack--lg { gap: var(--space-6); }
.c-row       { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.c-row--end  { justify-content: flex-end; }
.c-row--between { justify-content: space-between; align-items: flex-start; }
.c-narrow    { max-width: 520px; }
.c-medium    { max-width: 760px; margin-left: auto; margin-right: auto; }
.c-divider   { border: 0; border-top: 1px solid var(--line-2); margin: var(--space-5) 0; }

/* ---- TABLE ---- */
.c-table-wrap {
  border: 2px solid var(--line-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  background: var(--surface);
  overflow-x: auto;
}
.c-table { width: 100%; border-collapse: collapse; }
.c-table th {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  color: var(--ink-2);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 2px solid var(--line-strong);
  background: var(--surface-2);
  white-space: nowrap;
}
.c-table td {
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.c-table tbody tr:last-child td { border-bottom: 0; }
.c-table tbody tr:hover { background: var(--paper); }
.c-td-mono  { font-family: var(--font-mono); font-size: var(--text-xs) !important; }
.c-td-right { text-align: right; white-space: nowrap; }
.c-td-mute  { color: var(--ink-2); max-width: 240px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* row-level link stretch (whole row clickable) */
.c-tr-link { position: relative; cursor: pointer; }
.c-tr-link .c-row-anchor::before {
  content: '';
  position: absolute;
  inset: 0;
}
.c-tr-link td { position: static; }
.c-tr-link td a:not(.c-row-anchor) { position: relative; z-index: 1; }

/* ---- KV DETAIL CARD ---- */
.c-kv {
  background: var(--surface);
  border: 2px solid var(--line-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}
.c-kv-row {
  display: grid;
  grid-template-columns: min-content 1fr;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.c-kv-row:last-child { border-bottom: 0; }
.c-kv-key {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  color: var(--ink-2);
  padding: var(--space-3) var(--space-4);
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
.c-kv-val {
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  color: var(--ink);
  word-break: break-all;
}
.c-kv-val--mono { font-family: var(--font-mono); font-size: var(--text-xs); }

/* ---- SECTION CARD ---- */
.c-section {
  background: var(--surface);
  border: 2px solid var(--line-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}
.c-section__head {
  padding: var(--space-3) var(--space-5);
  border-bottom: 2px solid var(--line-strong);
  background: var(--surface-2);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  color: var(--ink-2);
}
.c-section__body { padding: var(--space-5); }
.c-section--danger { border-color: var(--signal); box-shadow: 4px 4px 0 0 var(--signal); }
.c-section--danger .c-section__head { border-color: var(--signal); color: var(--signal); }

/* ---- ALERTS ---- */
.c-alert {
  background: var(--signal-soft);
  border: 2px solid var(--signal);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-4);
  color: var(--signal-deep);
  font-size: var(--text-sm);
}
.c-alert--warn {
  background: var(--brass-soft);
  border-color: var(--brass);
  color: var(--brass-deep);
}

/* ---- LOG PANEL ---- */
.c-log-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-log {
  background: #1A1A15;
  color: #D4CFBF;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  line-height: 1.6;
  border-radius: var(--r-md);
  padding: var(--space-5);
  overflow: auto;
  max-height: 520px;
  white-space: pre;
  border: 2px solid var(--line-strong);
}

/* ---- COPY ROW ---- */
.c-copy-row { display: flex; gap: var(--space-2); align-items: stretch; }
.c-copy-row .input { min-width: 0; flex: 1; font-family: var(--font-mono); font-size: var(--text-xs); }

/* ---- SLUG JOIN ---- */
.c-join { display: flex; }
.c-join .input { border-radius: var(--r-md) 0 0 var(--r-md); flex: 1; min-width: 0; border-right: 0; }
.c-join__suffix {
  display: flex;
  align-items: center;
  padding: 0 var(--space-4);
  background: var(--surface-2);
  border: 2px solid var(--line-strong);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--ink-3);
  white-space: nowrap;
}

/* ---- OPTION CARD (radio) ---- */
.c-option {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 2px solid var(--line-2);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.c-option:hover { border-color: var(--spruce); background: var(--spruce-soft); }
.c-option input[type="radio"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--spruce); cursor: pointer; }
.c-option__title { font-size: var(--text-sm); font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.c-option__desc  { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.5; }

/* ---- PROGRESS (usage bars) ---- */
.c-prog { display: flex; flex-direction: column; gap: var(--space-2); }
.c-prog__top   { display: flex; justify-content: space-between; align-items: baseline; }
.c-prog__label { font-size: var(--text-sm); color: var(--ink); }
.c-prog__value { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-2); }
.c-prog__bar {
  width: 100%;
  height: 6px;
  appearance: none;
  border: none;
  border-radius: var(--r-pill);
  background: var(--line-2);
  overflow: hidden;
}
.c-prog__bar::-webkit-progress-bar   { background: var(--line-2); border-radius: var(--r-pill); }
.c-prog__bar::-webkit-progress-value { background: var(--spruce); border-radius: var(--r-pill); }
.c-prog__bar::-moz-progress-bar      { background: var(--spruce); border-radius: var(--r-pill); }
.c-prog__note  { font-size: var(--text-xs); color: var(--ink-3); }

/* ---- NOTE (callout) ---- */
.c-note {
  border-left: 3px solid var(--brass);
  padding: var(--space-3) var(--space-4);
  background: var(--brass-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* ---- EMPTY STATE ---- */
.c-empty {
  padding: var(--space-8) var(--space-5);
  text-align: center;
  color: var(--ink-3);
  font-size: var(--text-sm);
}
.c-empty p { margin-bottom: var(--space-4); }
.c-empty a { color: var(--green-fg); text-decoration: underline; }

/* ---- INLINE CODE ---- */
:not(pre) > code {
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 0.1em 0.35em;
}

/* ---- HTMX ---- */
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: inline-flex; align-items: center; }
.c-spinner {
  width: 14px; height: 14px;
  border: 2px solid var(--line-2);
  border-top-color: var(--spruce);
  border-radius: 50%;
  animation: c-spin 0.6s linear infinite;
  flex-shrink: 0;
}
@keyframes c-spin { to { transform: rotate(360deg); } }

/* ---- SETTINGS LAYOUT (left nav + content) ---- */
.c-settings-layout {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}
.c-settings-nav {
  width: 128px;
  flex-shrink: 0;
  position: sticky;
  top: calc(54px + var(--space-5));
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c-settings-nav a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.c-settings-nav a:hover { color: var(--green-fg); background: var(--spruce-soft); }
.c-settings-content { flex: 1; min-width: 0; }

/* ---- PROVIDER ICONS ---- */
.c-provider-icon { width: 14px; height: 14px; vertical-align: -2px; flex-shrink: 0; }
.c-repo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.c-repo-link:hover { color: var(--green-fg); }
.c-ext-link {
  display: inline-flex;
  align-items: center;
  margin-left: var(--space-2);
  padding: 2px 7px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-pill);
  color: var(--ink-3);
  text-decoration: none;
  font-size: var(--text-sm);
  line-height: 1.5;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.c-ext-link:hover {
  border-color: var(--green-fg);
  color: var(--green-fg);
}

/* ---- AUTH PAGE ---- */
.c-auth {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-7) var(--space-5);
  gap: var(--space-6);
}
.c-auth__brand    { text-align: center; }
.c-auth__wordmark {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--spruce);
  line-height: 1;
  text-decoration: none;
  margin-bottom: var(--space-2);
}
.c-auth__tagline {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  color: var(--ink-3);
}
.c-auth__card    { width: 100%; max-width: 380px; padding: var(--space-6); }
.c-auth__title   {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}
.c-auth__sub     { font-size: var(--text-sm); color: var(--ink-2); margin-bottom: var(--space-5); }
