/* ================================================================
   LUMIVO Design System
   "Lumi" = clarity of light | "Vivo" = alive, living
   Minimal SaaS dashboard · Mobile-first · No external fonts
   ================================================================ */

/* ─── Design tokens ─────────────────────────────────────────── */
:root {
  /* Brand */
  --primary:       #4f6ef7;
  --primary-dark:  #3a56d4;
  --primary-soft:  #eef1ff;
  --secondary:     #06b6d4;
  --secondary-soft:#e0f9ff;

  /* Neutral */
  --bg:            #f8fafc;
  --surface:       #ffffff;
  --surface-alt:   #f1f5f9;
  --text:          #0f172a;
  --text-sub:      #475569;
  --text-muted:    #94a3b8;
  --border:        #e2e8f0;
  --border-focus:  #4f6ef7;

  /* Icons — single neutral tone for all SVG icons */
  --icon:          #64748b;
  --icon-soft:     #94a3b8;

  /* Modules */
  --health:        #10b981;
  --health-dark:   #059669;
  --health-soft:   #d1fae5;
  --debt:          #f59e0b;
  --debt-dark:     #d97706;
  --debt-soft:     #fef3c7;
  --goals:         #7c3aed;
  --goals-dark:    #6d28d9;
  --goals-soft:    #ede9fe;

  /* Status */
  --success:       #10b981;
  --warning:       #f59e0b;
  --danger:        #ef4444;
  --danger-soft:   #fef2f2;
  --info:          #06b6d4;

  /* Achievement */
  --gold:          #f59e0b;
  --silver:        #94a3b8;
  --bronze:        #b45309;

  /* Layout */
  --radius-xs:     4px;
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow-sm:     0 1px 2px rgba(15,23,42,.04);
  --shadow:        0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:     0 4px 6px rgba(15,23,42,.07), 0 2px 4px rgba(15,23,42,.05);
  --shadow-lg:     0 10px 15px rgba(15,23,42,.08), 0 4px 6px rgba(15,23,42,.05);

  /* Z-index scale */
  --z-base:        10;
  --z-nav:         20;
  --z-modal:       30;
  --z-toast:       50;
}

/* ─── Dark mode ─────────────────────────────────────────────── */
body.dark {
  --bg:            #0f172a;
  --surface:       #1e293b;
  --surface-alt:   #0f172a;
  --text:          #f1f5f9;
  --text-sub:      #94a3b8;
  --text-muted:    #64748b;
  --border:        #334155;
  --primary-soft:  #1e2f6b;
  --health-soft:   #064e3b;
  --debt-soft:     #451a03;
  --goals-soft:    #2e1065;
  --shadow:        0 1px 3px rgba(0,0,0,.3), 0 1px 2px rgba(0,0,0,.2);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Typography ────────────────────────────────────────────── */
h1 { font-size: clamp(1.5rem, 4vw, 2rem);   font-weight: 800; margin: 0 0 .5rem; line-height: 1.2; }
h2 { font-size: clamp(1.15rem, 3vw, 1.4rem);font-weight: 700; margin: 0 0 .5rem; }
h3 { font-size: 1.05rem;  font-weight: 700; margin: 0 0 .4rem; }
p  { margin: 0 0 .75rem; max-width: 65ch; }
a  { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.text-muted  { color: var(--text-muted) !important; }
.text-sub    { color: var(--text-sub) !important; }
.text-center { text-align: center; }
.text-sm     { font-size: .875rem; }
.text-xs     { font-size: .75rem; }
.font-bold   { font-weight: 700; }
.font-medium { font-weight: 500; }

/* ─── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-sm { max-width: 640px; }

/* ─── Grid ──────────────────────────────────────────────────── */
.grid        { display: grid; gap: .75rem; }
.cols-2      { grid-template-columns: repeat(2, 1fr); }
.cols-3      { grid-template-columns: repeat(3, 1fr); }
.auto-cols   { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.stats-grid  { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); margin-bottom: 1rem; }

@media (max-width: 640px) {
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
}

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.card-sm { padding: .875rem; }
.card-flush { padding: 0; overflow: hidden; }
.card-hover { cursor: pointer; transition: box-shadow .2s, transform .15s; }
.card-hover:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-value { font-size: 1.6rem; font-weight: 800; line-height: 1.1; color: var(--text); }
.stat-label { font-size: .75rem; color: var(--text-muted); margin-top: .25rem; font-weight: 500; }
.stat-change { font-size: .75rem; margin-top: .2rem; }
.stat-change.pos { color: var(--success); }
.stat-change.neg { color: var(--danger); }

/* Module accent lines */
.card.health { border-left: 3px solid var(--health); }
.card.debt   { border-left: 3px solid var(--debt); }
.card.goals  { border-left: 3px solid var(--goals); }

/* ─── Buttons (min 44px touch target per ui-ux-pro-max) ──────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 44px;
  padding: .6rem 1.25rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s, box-shadow .15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn:focus-visible { outline: 2px solid var(--border-focus); outline-offset: 2px; }

.btn-primary   { background: var(--primary);  color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--primary-dark); }

.btn-outline   { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover:not(:disabled) { background: var(--primary-soft); }

.btn-ghost     { background: transparent; color: var(--text-sub); }
.btn-ghost:hover:not(:disabled) { background: var(--surface-alt); }

.btn-danger    { background: transparent; color: var(--danger); border: 1.5px solid var(--danger); }
.btn-danger:hover:not(:disabled) { background: var(--danger-soft); }

.btn-sm { min-height: 36px; padding: .4rem .9rem; font-size: .85rem; }
.btn-lg { min-height: 52px; padding: .8rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* Module CTAs */
.btn-health { background: var(--health); color: #fff; }
.btn-health:hover:not(:disabled) { background: var(--health-dark); }
.btn-debt   { background: var(--debt);   color: #fff; }
.btn-debt:hover:not(:disabled)   { background: var(--debt-dark); }
.btn-goals  { background: var(--goals);  color: #fff; }
.btn-goals:hover:not(:disabled)  { background: var(--goals-dark); }

/* ─── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--text-sub);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .875rem;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=date],
input[type=tel],
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: .55rem .85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
input::placeholder { color: var(--text-muted); }
textarea { resize: vertical; min-height: 80px; }

.form-hint { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }
.form-error { font-size: .8rem; color: var(--danger); margin-top: .25rem; }

.input-group { position: relative; display: flex; align-items: stretch; }
.input-group input { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.input-group .input-suffix {
  display: flex; align-items: center; padding: 0 .85rem;
  background: var(--surface-alt); border: 1.5px solid var(--border);
  border-left: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .875rem; color: var(--text-muted);
}

.checkbox-row {
  display: flex; align-items: center; gap: .6rem;
  min-height: 44px; cursor: pointer;
}
.checkbox-row input[type=checkbox] { width: 1.1rem; height: 1.1rem; cursor: pointer; }

/* ─── Progress bars ─────────────────────────────────────────── */
.progress-wrap { margin: .5rem 0; }
.progress-track {
  height: 10px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.progress-track.thin { height: 6px; }
.progress-track.thick { height: 14px; }
.progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
  background: var(--primary);
}
.progress-fill.health { background: var(--health); }
.progress-fill.debt   { background: var(--debt); }
.progress-fill.goals  { background: var(--goals); }
.progress-fill.success{ background: var(--success); }
.progress-fill.warning{ background: var(--warning); }
.progress-fill.danger { background: var(--danger); }

/* ─── Zone bar (calorie range visualization) ────────────────── */
.zone-bar-wrap { position: relative; margin: .75rem 0 .25rem; }
.zone-bar-track {
  position: relative;
  height: 10px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.zone-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width .5s ease;
}
.zone-ok   .zone-bar-fill { background: var(--success); }
.zone-low  .zone-bar-fill { background: var(--warning); }
.zone-over .zone-bar-fill { background: var(--danger); }
.zone-marker {
  position: absolute;
  top: -2px;
  width: 2px;
  height: 14px;
  background: var(--text-sub);
  transform: translateX(-50%);
  border-radius: 1px;
}
.zone-labels {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .2rem;
}
.zone-status {
  font-size: .85rem;
  font-weight: 600;
  margin-top: .25rem;
}
.zone-ok   .zone-status { color: var(--success); }
.zone-low  .zone-status { color: var(--warning); }
.zone-over .zone-status { color: var(--danger); }

/* ─── Coaching card (motivation engine) ─────────────────────── */
.coaching-card {
  border-left: 4px solid var(--primary);
  padding: .875rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface);
  margin-bottom: 1rem;
}
.coaching-card.tone-calm        { border-left-color: var(--primary); }
.coaching-card.tone-celebration { border-left-color: var(--success); background: var(--health-soft); }
.coaching-card.tone-warning     { border-left-color: var(--warning); background: var(--debt-soft); }
.coaching-card .why-anchor      { font-style: italic; color: var(--text-muted); font-size: .875rem; margin-bottom: .35rem; }
.coaching-card .coach-msg       { font-weight: 500; margin: 0; }

/* ─── Color density badges ───────────────────────────────────── */
.color-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: .35rem;
  vertical-align: middle;
}
.color-dot.green  { background: var(--health); }
.color-dot.yellow { background: var(--debt); }
.color-dot.orange { background: var(--danger); }

.density-badge {
  font-size: .72rem;
  color: var(--text-muted);
  margin-left: .35rem;
  font-style: italic;
}

/* ─── Achievement badges ─────────────────────────────────────── */
.achievement-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .75rem .35rem .5rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  cursor: default;
}
.achievement-badge .badge-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: flex; align-items: center; justify-content: center;
}
.achievement-badge .badge-icon svg { width: 13px; height: 13px; fill: var(--icon); }

/* ─── Achievement toast (celebration) ───────────────────────── */
.achievement-toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  min-width: 280px;
  max-width: 360px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .875rem;
  z-index: var(--z-toast);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .25s;
}
.achievement-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.achievement-toast .toast-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.achievement-toast .toast-icon svg { width: 22px; height: 22px; fill: currentColor; }
.achievement-toast .toast-title  { font-weight: 700; font-size: .95rem; }
.achievement-toast .toast-desc   { font-size: .8rem; color: var(--text-sub); margin-top: .1rem; }

/* ─── Confetti particle (JS-driven) ─────────────────────────── */
.confetti-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  pointer-events: none;
  z-index: var(--z-toast);
  animation: confetti-fall .8s ease-in forwards;
}
@keyframes confetti-fall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(80px) rotate(360deg); opacity: 0; }
}

/* ─── Top nav ────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -.02em;
}
.logo span { color: var(--secondary); }
.topbar-actions { display: flex; align-items: center; gap: .5rem; }

/* ─── Bottom nav ─────────────────────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.nav-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding: .55rem .25rem .5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-family: inherit;
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  min-height: 56px;
  transition: color .15s;
}
.nav-tab.active { color: var(--primary); }
.nav-tab:focus-visible { outline: 2px solid var(--border-focus); outline-offset: -2px; }
.nav-tab svg { width: 22px; height: 22px; stroke: var(--icon); fill: none; stroke-width: 1.6; }
.nav-tab.active svg { stroke: var(--primary); }

/* All nav tabs use primary on active — no per-module color on icons */
.nav-tab.health.active,
.nav-tab.debt.active,
.nav-tab.goals.active  { color: var(--primary); }

/* ─── Page layout ────────────────────────────────────────────── */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 5.5rem;
}
.view { display: none; }
.view.active { display: block; }

/* ─── Onboarding wizard ──────────────────────────────────────── */
.wizard-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--secondary-soft) 100%);
  padding: 1.5rem;
}
.wizard-card {
  width: 100%;
  max-width: 560px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.wizard-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.wizard-steps {
  display: flex;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.wizard-step-dot {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: var(--border);
  transition: background .3s;
}
.wizard-step-dot.done    { background: var(--primary); }
.wizard-step-dot.current { background: var(--secondary); }
.wizard-body { padding: 1.5rem; }
.wizard-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: .75rem;
}

/* Module selection cards (onboarding step 1) */
.module-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin: 1rem 0;
}
.module-card {
  position: relative;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem .75rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.module-card input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.module-card:has(input:checked) { border-color: var(--primary); background: var(--primary-soft); }
.module-card.health:has(input:checked) { border-color: var(--health); background: var(--health-soft); }
.module-card.debt:has(input:checked)   { border-color: var(--debt);   background: var(--debt-soft); }
.module-card.goals:has(input:checked)  { border-color: var(--goals);  background: var(--goals-soft); }
.module-card svg { width: 28px; height: 28px; margin-bottom: .4rem; stroke: var(--icon); fill: none; }
.module-card:has(input:checked) svg { stroke: var(--primary); }
.module-label { font-size: .8rem; font-weight: 700; color: var(--text-sub); }
.module-sub   { font-size: .7rem; color: var(--text-muted); margin-top: .15rem; }
.module-card:has(input:checked) .module-label { color: var(--primary); }
.module-card .module-label { font-size: .8rem; font-weight: 700; }

/* ─── Auth pages ─────────────────────────────────────────────── */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--secondary-soft) 100%);
  padding: 1.5rem;
}
.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem 1.75rem;
}
.auth-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.auth-logo span { color: var(--secondary); }

/* ─── Language Picker ────────────────────────────────────────── */
.lang-picker {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.lang-btn {
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-muted);
  transition: background .15s, border-color .15s, color .15s;
  min-height: 36px;
  line-height: 1.6;
  letter-spacing: .01em;
}
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ─── Timeline calculator results ───────────────────────────── */
.timeline-result {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: .75rem;
}
.timeline-result.feasible   { border-color: var(--success); background: var(--health-soft); }
.timeline-result.infeasible { border-color: var(--warning); background: var(--debt-soft); }
.timeline-result .result-title { font-weight: 700; margin-bottom: .4rem; }
.timeline-result .result-msg   { font-size: .9rem; }

/* ─── AI credits counter ─────────────────────────────────────── */
.ai-credits-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .85rem;
  background: var(--primary-soft);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary);
}
.ai-credits-bar svg { width: 14px; height: 14px; }

/* ─── Streak flame ───────────────────────────────────────────── */
.streak-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--icon);
  padding: .25rem .7rem;
  background: var(--debt-soft);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}
.streak-badge svg { width: 15px; height: 15px; fill: var(--icon); }

/* ─── Misc utilities ─────────────────────────────────────────── */
.hidden   { display: none !important; }
.sr-only  { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.divider  { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.tag      { display: inline-block; padding: .2rem .6rem; background: var(--surface-alt); border-radius: 999px; font-size: .75rem; font-weight: 600; }

/* ─── Skeleton loader ────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--border) 25%, var(--surface-alt) 50%, var(--border) 75%);
  background-size: 400% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

/* ─── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  main { padding: 1rem .875rem 5rem; }
  .module-select-grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .module-card { padding: .75rem .5rem; }
  .module-card svg { width: 22px; height: 22px; }
  .wizard-body, .wizard-header { padding: 1.25rem 1rem; }
}

@media (max-width: 400px) {
  .module-select-grid { gap: .35rem; }
}
