/* 
   Pulso Criativo -- Fluxo Pblico v3
   Estilo: Limpo e minimalista  tipografia forte  espao em branco
   Fonte: Outfit (todos os pesos)
    */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/*  Reset & Tokens  */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:     #6036F9;
  --brand-d:   #4822d4;
  --brand-lt:  #f0ebff;
  --brand-mid: #ede9fe;
  --bg:        #f8f8fc;
  --surface:   #ffffff;
  --border:    #e8e8f0;
  --border-focus: #6036F9;
  --text:      #0f0f1a;
  --text-2:    #5a5a72;
  --text-3:    #9898b0;
  --error:     #e02020;
  --error-bg:  #fff5f5;
  --success:   #0ea05e;
  --success-bg:#f0fdf4;
  --r-sm:      6px;
  --r-md:      12px;
  --r-lg:      20px;
  --r-xl:      28px;
  --shadow-sm: 0 1px 3px rgba(15,15,26,.06), 0 1px 2px rgba(15,15,26,.04);
  --shadow-md: 0 4px 16px rgba(15,15,26,.08), 0 2px 6px rgba(15,15,26,.04);
  --shadow-lg: 0 12px 40px rgba(15,15,26,.10), 0 4px 12px rgba(15,15,26,.06);
}

html, body {
  min-height: 100vh;
  background: var(--bg);
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/*  Loading screen  */
#loading-screen {
  position: fixed; inset: 0;
  background: var(--brand);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  z-index: 200; transition: opacity .4s ease;
}
#loading-screen.hidden { opacity: 0; pointer-events: none; }
.loading-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; line-height: 1;
  display: flex; align-items: baseline; gap: 6px;
}
.loading-pulso    { font-weight: 900; color: #fff; }
.loading-criativo { font-weight: 600; color: rgba(255,255,255,.85); }
.loading-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 400; color: rgba(255,255,255,.65);
  letter-spacing: .05em;
}
.loading-spin {
  width: 26px; height: 26px;
  border: 2px solid rgba(255,255,255,.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-top: 2px;
}

/*  Error / Signed screens  */
#error-screen, #signed-screen {
  display: none; min-height: 100vh;
  flex-direction: column; align-items: center; justify-content: center;
  padding: 32px; background: var(--bg);
}
.scr-logo  { max-height: 44px; display: block; margin: 0 auto 36px; }
.scr-card  {
  background: var(--surface); border-radius: var(--r-xl);
  padding: 40px 36px; max-width: 420px; width: 100%;
  box-shadow: var(--shadow-lg); text-align: center;
}
.scr-icon  {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 22px; font-weight: 700;
}
.scr-icon.err { background: #fff0f0; color: var(--error); }
.scr-icon.ok  { background: #f0fdf4; color: var(--success); }
.scr-title { font-family: 'Outfit', sans-serif; font-size: 22px; margin-bottom: 10px; }
.scr-msg   { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.scr-rows  { text-align: left; margin-top: 24px; border-top: 1px solid var(--border); padding-top: 16px; }
.scr-row   { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.scr-row:last-child { border: none; }
.scr-k     { color: var(--text-3); min-width: 110px; flex-shrink: 0; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; padding-top: 2px; }
.scr-v     { color: var(--text); font-weight: 500; }

/*  App shell  */
#app { display: none; min-height: 100vh; flex-direction: column; }

/*  Header  */
.f-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  height: 75px;
  position: sticky; top: 0; z-index: 10;
}
.f-logo { height: 50px; width: auto; object-fit: contain; }

/*  Steps nav  */
.f-steps {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 24px; overflow-x: auto; display: flex; gap: 0;
  scrollbar-width: none;
}
.f-steps::-webkit-scrollbar { display: none; }
.f-step {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px; font-size: 12px; font-weight: 600;
  color: var(--text-3); white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.f-step.active { color: var(--brand); border-bottom-color: var(--brand); }
.f-step.done   { color: var(--success); }
.f-sn {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 10px; font-weight: 700;
  flex-shrink: 0; transition: all .2s;
}
.f-step.active .f-sn { background: var(--brand); color: #fff; }
.f-step.done   .f-sn { background: var(--success); color: #fff; }
.f-step-lbl { display: none; }
@media (min-width: 480px) { .f-step-lbl { display: inline; } }

/*  Main  */
.f-main {
  flex: 1; padding: 32px 20px 60px;
  max-width: 540px; margin: 0 auto; width: 100%;
}

/*  Panel  */
.f-panel { display: none; }
.f-panel.active { display: block; animation: fadeUp .25s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*  Contract header -- redesign v3  */
.ch-modulo {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 400; color: #1a1a1a;
  text-transform: uppercase; margin-bottom: 6px;
}
.ch-titulo-publico {
  font-family: 'Outfit', sans-serif;
  font-size: 30px; font-weight: 600; color: #6036F9;
  line-height: 1.1; margin-bottom: 20px;
}
.ch-wrap {
  background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 100%);
  border: 1px solid #ddd6fe;
  border-bottom: 5px solid #E4E4E4;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}
.ch-inner { padding: 20px 24px 16px; position: relative; overflow: hidden; }
.ch-inner-content { position: relative; z-index: 1; }
.ch-banner-img {
  position: absolute; top: 0; right: 0; height: 100%; width: auto;
  max-width: 62%; object-fit: cover; object-position: right center;
  pointer-events: none; user-select: none; z-index: 0;
}
.ch-evento {
  font-family: 'Outfit', sans-serif;
  font-size: 25px; font-weight: 900; color: #6036F9;
  line-height: 1; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 1px; display: block;
}
.ch-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 400; color: #1a1a1a;
  line-height: 1.2; margin-bottom: 12px;
}
.ch-data {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: #827cc0;
}
.ch-data .ti { font-size: 13px; }
.ch-stat {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 10px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 400; color: #1a1a1a;
  text-transform: uppercase; letter-spacing: 0;
  text-align: center;
}
.ch-mods-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-bottom: 5px solid #E4E4E4;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ch-item {
  padding: 16px 20px;
  border-right: 1px solid #e5e7eb;
  display: flex; flex-direction: column; align-items: center; gap: 0px;
  text-align: center;
}
.ch-item:last-child { border-right: none; }
.ch-item-icon { font-size: 25px; color: #A038FA; margin-bottom: 4px; }
.ch-lbl { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 400; text-transform: uppercase; letter-spacing: 0px; color: #000; }
.ch-val { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; color: #1a1a1a; line-height: 1.4; letter-spacing: 0px; }

/*  Auto-save  */
.f-autosave {
  font-size: 11px; color: var(--text-3);
  display: flex; align-items: center;
  gap: 6px; margin-bottom: 20px; width: 100%; text-align: right;
}
.as-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: background .3s; flex-shrink: 0; }
.as-dot.saving { background: #f59e0b; animation: pulse 1s infinite; }
.as-dot.saved  { background: var(--success); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/*  Card  */
.f-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.f-stitle {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  color: var(--brand);
  margin-top: 5px;
  margin-bottom: 0px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
}

/*  Fields  */
.f-field { margin-bottom: 20px; }
.f-field:last-child { margin-bottom: 0; }

.f-field label {
  /*display: block;*/
  font-size: 12px; font-weight: 600;
  color: var(--text-2); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 8px;
  line-height: 1;
}

.f-field input,
.f-field select,
.f-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 15px; font-family: inherit;
  background: var(--surface); color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  line-height: 1.5;
}
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(96,54,249,.08);
}
.f-field input::placeholder,
.f-field textarea::placeholder { color: var(--text-3); }

.f-field.has-err input,
.f-field.has-err select,
.f-field.has-err textarea {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(224,32,32,.06);
}
.f-err-msg {
  display: none; font-size: 12px; color: var(--error);
  margin-top: 6px; font-weight: 500;
}
.f-field.has-err .f-err-msg { display: block; }
.f-hint { font-size: 12px; color: var(--text-3); margin-top: 6px; line-height: 1.5; }
.f-req  { color: var(--error); }

.f-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.f-row2 .f-field { margin-bottom: 0; }
.f-row2:last-child { margin-bottom: 0; }

.f-sel-wrap { position: relative; }
.f-sel-wrap::after {
  content: ''; position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px; height: 6px;
  border-right: 1.5px solid var(--text-3);
  border-bottom: 1.5px solid var(--text-3);
  pointer-events: none;
}
.f-sel-wrap select { appearance: none; padding-right: 40px; }

/*  cone ao lado do campo  */
.f-input-icon-wrap  { display: flex; align-items: center; gap: 10px; }
.f-input-icon-side  { flex-shrink: 0; display: flex; align-items: center; }
.f-input-icon-side i{ font-size: 22px; }
.f-input-icon-field { flex: 1; min-width: 0; }
.f-input-icon-field input,
.f-input-icon-field select,
.f-input-icon-field textarea { width: 100%; }

/*  Radio  */
.f-radio-group { display: flex; flex-direction: column; gap: 8px; }
.f-radio-item  {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r-md); cursor: pointer; font-size: 14px;
  transition: border-color .15s, background .15s;
}
.f-radio-item:has(input:checked) { border-color: var(--brand); background: var(--brand-lt); }
.f-radio-item input { accent-color: var(--brand); width: 16px; height: 16px; flex-shrink: 0; }

/*  Checkbox nico  */
.f-check-single       { margin-bottom: 20px; }
.f-check-single-label {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r-md); transition: border-color .15s, background .15s;
}
.f-check-single-label:has(input:checked) { border-color: var(--brand); background: var(--brand-lt); }
.f-check-single-label input { accent-color: var(--brand); width: 18px; height: 18px; flex-shrink: 0; margin: 0; align-self: flex-start; margin-top: 1px; }
.f-check-single-txt { flex: 1; min-width: 0; font-size: 13px; color: var(--text-2); line-height: 1.5; }

/*  Ttulo decorativo  */
.f-titulo      { padding: 8px 0 16px; }
.f-titulo-txt  {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  color: var(--brand);
  margin-top: 5px;
  margin-bottom: 0px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
}
.f-titulo-hint { font-size: 12px; color: var(--text-3); margin-top: 8px; }

/*  RO grid  */
.ro-grid  { display: flex; flex-direction: column; }
.ro-row   { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.ro-row:last-child { border: none; }
.ro-key   {
  font-size: 10px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .06em;
  min-width: 100px; flex-shrink: 0; padding-top: 2px;
}
.ro-val   { font-size: 14px; font-weight: 500; color: var(--text); }
.ro-row-pg .ro-val { line-height: 1.65; text-align: right; }

/*  Contract card  */
.ct-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-bottom: 5px solid #E4E4E4;
  border-radius: var(--r-lg); padding: 24px; margin-bottom: 16px;
}
.ct-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--brand-lt); color: var(--brand);
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-bottom: 10px;
}
.ct-nome       { font-size: 15px; font-weight: 600; margin-bottom: 14px; color: var(--text); }
.ct-meta       { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.ct-meta-item  { font-size: 12px; }
.ct-meta-k     { color: var(--text-3); text-transform: uppercase; letter-spacing: .05em; font-size: 10px; font-weight: 700; display: block; margin-bottom: 3px; }
.ct-meta-v     { color: var(--text); font-weight: 600; font-size: 13px; }
.ct-hash       {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 10px 14px; margin-bottom: 16px;
}
.ct-hash-lbl   { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-3); margin-bottom: 4px; }
.ct-hash-val   { font-family: 'Courier New', monospace; font-size: 10px; color: var(--text-2); word-break: break-all; line-height: 1.7; }
.ct-action     { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.ct-action-txt { font-size: 13px; color: var(--text-2); }
.ct-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff;
  padding: 11px 20px; border-radius: var(--r-md);
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background .15s, transform .1s;
}
.ct-link:hover { background: var(--brand-d); transform: translateY(-1px); }
.ct-link svg   { width: 16px; height: 16px; }

/*  Visualizador do contrato em iframe (igual imprensa)  */
.ct-viewer-wrap { margin-top: 14px; }
.ct-viewer-lbl  { font-size: 13px; color: var(--text-2); margin: 2px 0 8px; }
.ct-viewer      { width: 100%; height: 460px; border: 1px solid var(--line, #e5e7eb); border-radius: var(--r-md); background: #fff; display: block; }
.ct-viewer-open { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 13px; color: var(--brand); text-decoration: none; font-weight: 600; }
.ct-viewer-open:hover { text-decoration: underline; }
@media (max-width: 640px) { .ct-viewer { height: 62vh; } }

/*  Check items  */
.f-checks      { display: flex; flex-direction: column; gap: 10px; }
.f-check-item  {
  display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
  padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r-md); transition: border-color .15s, background .15s;
}
.f-check-item.checked { border-color: var(--success); background: #f0fdf4; }
.f-check-item input[type=checkbox] {
  width: 18px; height: 18px; accent-color: var(--brand);
  flex-shrink: 0; margin-top: 2px; cursor: pointer;
}
.f-check-txt { font-size: 13px; color: var(--text-2); line-height: 1.7; }

/*  Buttons  */
.f-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; font-family: inherit;
  border: none; cursor: pointer; transition: all .15s;
  letter-spacing: .01em;
}
.f-btn.primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 2px 8px rgba(96,54,249,.3);
}
.f-btn.primary:hover:not(:disabled) {
  background: var(--brand-d);
  box-shadow: 0 4px 16px rgba(96,54,249,.35);
  transform: translateY(-1px);
}
.f-btn.primary:active  { transform: translateY(0); }
.f-btn.primary:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; transform: none; }
.f-btn.ghost {
  background: transparent; color: var(--text-2);
  border: 1.5px solid var(--border);
}
.f-btn.ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-lt); }
.f-spin {
  display: none; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite;
}
.f-btn.loading .f-btn-lbl { opacity: 0; width: 0; overflow: hidden; }
.f-btn.loading .f-spin    { display: block; }
.f-btn-row        { display: flex; gap: 12px; margin-top: 24px; }
.f-btn-row.end    { justify-content: flex-end; }
.f-btn-row.spread { justify-content: space-between; }

/*  Info note  */
.f-info-note {
  font-size: 13px; color: var(--text-2);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 16px;
  margin-bottom: 16px; line-height: 1.6;
}
.f-err-banner {
  background: var(--error-bg); color: var(--error);
  border: 1.5px solid #fecaca; border-radius: var(--r-md);
  padding: 12px 16px; font-size: 13px; font-weight: 500;
  margin-top: 12px; display: none;
}
.f-err-banner.show { display: block; }

/*  Success  */
.f-success-wrap { text-align: center; padding: 40px 0 24px; }
.f-success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #0ea05e, #06c068);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(14,160,94,.3);
}
.f-success-icon svg { width: 32px; height: 32px; color: #fff; }
.f-success-wrap h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px; margin-bottom: 10px; color: var(--text);
}
.f-success-wrap p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

.f-record-box { margin-top: 20px; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.f-record-row { display: flex; gap: 12px; padding: 10px 16px; border-bottom: 1px solid var(--border); }
.f-record-row:last-child { border: none; }
.f-record-key { font-size: 10px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .05em; min-width: 120px; padding-top: 2px; flex-shrink: 0; }
.f-record-val { font-size: 12px; color: var(--text); word-break: break-all; font-weight: 500; }

/*  Saving overlay  */
#saving-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(96,54,249,.94); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; color: #fff; text-align: center; padding: 32px;
  backdrop-filter: blur(4px);
}
#saving-overlay.show { display: flex; animation: fadeIn .2s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.sov-spin  { width: 44px; height: 44px; border: 3px solid rgba(255,255,255,.25); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.sov-title { font-family: 'Outfit', sans-serif; font-size: 20px; }
.sov-msg   { font-size: 13px; opacity: .75; }

/*  Label com cone  */
.f-label-with-icon { display: flex; align-items: center; gap: 6px; }
.f-field-icon      { font-size: 14px; flex-shrink: 0; }

/*  Animations  */
@keyframes spin { to { transform: rotate(360deg); } }

/*  Mobile  */
@media (max-width: 480px) {
  .ch-wrap { padding: 0px 0px 0px;border-radius: var(--r-lg);}
  .f-main  { padding: 24px 16px 48px; }
  .f-card  { padding: 20px; border-radius: var(--r-lg); }
  .ch-grid { grid-template-columns: 1fr; }
  .f-row2  { grid-template-columns: 1fr; gap: 20px; }
  .ch-title { font-size: 22px; }
  .f-btn   { padding: 13px 20px; width: 100%; }
  .f-btn-row.spread { flex-direction: column-reverse; }
  .f-btn-row.spread .f-btn:first-child { width: 100%; }
  .f-btn-row.end    { flex-direction: column; }
  .f-header { padding: 0 16px; }
  .f-steps  { padding: 0 16px; }
}

/*  Texto livre  */
.f-texto-livre {
  padding-bottom: 16px;
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.4;
}
.f-texto-livre ul,
.f-texto-livre ol { margin: 8px 0; padding-left: 26px; }
.f-texto-livre ul { list-style: disc; }
.f-texto-livre ol { list-style: decimal; }
.f-texto-livre li { margin-bottom: 4px; padding-left: 4px; }
.f-texto-livre a { color: var(--brand); text-decoration: underline; }

/*  Endereo completo  */
.f-endereco-bloco { display: flex; flex-direction: column; gap: 0; margin-bottom: 4px; }
.f-endereco-bloco .f-field { margin-bottom: 16px; }
.ec-derivado { background: #f9fafb; color: var(--text-3); }
.ec-derivado:not(:disabled) { background: var(--surface); color: var(--text); }