:root {
  --bg:           #F8FBFC;
  --surface:      #FFFFFF;
  --surface-soft: #F6F6F4;
  --text:         #545454;
  --subtle:       #8A9296;
  --text-light:   #B0B6B9;
  --accent:       #7DD3DC;
  --accent-soft:  #C4ECF0;
  --dark:         #545454;
  --error:        #D14520;
  --border:       #EAEAEA;
  --shadow:       0 12px 34px rgba(0,0,0,0.07);
  --shadow-card:  0 8px 26px rgba(84,84,84,0.08);
  --radius:       22px;
  --glass-bg:
    linear-gradient(125deg, rgba(255,255,255,0.60) 0%, rgba(255,255,255,0.10) 26%, rgba(255,255,255,0) 52%, rgba(255,255,255,0.16) 100%),
    linear-gradient(155deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  --glass-blur:   blur(10px) saturate(140%);
  --glass-fill:
    radial-gradient(140% 100% at 12% -12%, rgba(255,255,255,0.24), rgba(255,255,255,0) 52%),
    linear-gradient(158deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  --glass-border: rgba(255,255,255,0.7);
  --glass-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  --page-bg:
    repeating-linear-gradient(0deg,  rgba(96,150,165,0.08) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(96,150,165,0.08) 0 1px, transparent 1px 32px),
    radial-gradient(58% 46% at 88% 6%,   rgba(74,196,214,0.45), transparent 70%),
    radial-gradient(54% 44% at 2% 34%,   rgba(108,210,224,0.40), transparent 72%),
    radial-gradient(68% 56% at 98% 92%,  rgba(140,224,236,0.42), transparent 72%),
    radial-gradient(46% 38% at 42% 60%,  rgba(180,236,244,0.30), transparent 76%),
    #EEF8FA;
  --glass-tint:   linear-gradient(150deg, rgba(255,255,255,0.30), rgba(255,255,255,0.10));
  --nav-clear:    calc(90px + env(safe-area-inset-bottom, 0px));
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--page-bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body { padding-top: env(safe-area-inset-top, 0px); }

a { color: var(--text); text-decoration: none; }
hr { border: 0; border-top: 1px solid var(--border); margin: 20px 0; }

.container {
  width: 100%;
  max-width: 480px;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 0 24px var(--nav-clear);
  background: transparent;
}

.container-auth {
  max-width: 420px;
  margin: 0 auto;
  padding: 32px 28px;
}

.appbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
}
body > .appbar { padding: 10px 16px; }
.appbar h1 {
  flex: 1;
  text-align: center;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.appbar-gap { width: 44px; flex: 0 0 auto; }
.appbar .back {
  color: var(--text);
  font-size: 19px;
  line-height: 1;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  box-shadow: var(--glass-shadow);
  transition: transform .1s;
}
.appbar .back:active { transform: scale(.93); }
.appbar-spacer { flex: 1; }
.appbar-link { color: var(--subtle); font-size: 13px; }

.brand {
  display: block;
  text-align: center;
  padding-top: 12px;
  margin: 0 0 14px;
}
.brand img {
  display: block;
  width: 74px;
  height: auto;
  margin: 0 auto;
}

.title    { font-size: 22px; font-weight: 600; margin: 0 0 8px; }
.subtitle { color: var(--subtle); font-size: 14px; margin: 0 0 24px; }
.section-label {
  color: var(--subtle);
  font-size: 12px;
  letter-spacing: 1.5px;
  margin: 16px 0 12px;
  text-transform: uppercase;
}

.input-group { margin-bottom: 18px; }
.input-group label {
  display: block;
  color: var(--subtle);
  font-size: 11px;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 500;
}
.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .15s;
}
.input-group input::placeholder,
.input-group textarea::placeholder { color: rgba(84,84,84,0.5); }
.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--accent) !important;
}
.input-code {
  font-size: 22px;
  letter-spacing: 8px;
  text-align: center;
}

.btn {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  position: relative;
  background: rgba(60,60,60,0.42);
  -webkit-backdrop-filter: blur(8px) saturate(155%);
  backdrop-filter: blur(8px) saturate(155%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: background .15s, opacity .15s;
}
.btn:hover { opacity: 0.92; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-accent  { background: var(--accent); color: var(--dark); }
.btn-outlined {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-link {
  background: transparent;
  color: var(--accent);
  border: 0;
  padding: 12px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

/* CTA coherente con la app (mismo estilo que .auth-btn) */
.btn-cta {
  display: block;
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, #34C0D6 0%, #2A93C7 100%);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.45);
  transition: transform .12s, opacity .2s;
}
.btn-cta:hover  { opacity: .95; }
.btn-cta:active { transform: scale(.985); }
.btn-cta.soft {
  background: rgba(198,240,246,0.5);
  color: #2A93C7;
  border: 1px solid rgba(125,211,220,0.7);
  box-shadow: var(--glass-shadow);
}

.link-cta {
  display: inline-block;
  text-align: center;
  color: #2A93C7;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.error {
  background: rgba(209, 69, 32, 0.08);
  border: 1px solid rgba(209, 69, 32, 0.25);
  color: var(--error);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin: 0 0 16px;
}
.success {
  color: var(--accent);
  font-size: 13px;
  margin: 12px 0;
  font-weight: 500;
}

.card {
  background: var(--surface);
  border-radius: 20px;
  padding: 16px 18px;
  margin-bottom: 14px;
  display: block;
  color: inherit;
  transition: transform .12s;
}
.card:hover { transform: translateY(-1px); }
.card-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  color: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 auto;
}
.card-body { flex: 1; min-width: 0; }
.card-title { font-weight: 600; font-size: 15px; }
.card-subtitle { color: var(--subtle); font-size: 12px; margin-top: 2px; }
.card-meta { color: var(--text-light); font-size: 11px; margin-top: 4px; }

.stat-card {
  background: var(--surface);
  border-radius: 10px;
  width: 340px;
  max-width: 100%;
  height: 60px;
  margin: 0 auto 15px;
  padding: 8px 15px;
  box-sizing: border-box;
}
.stat-card .progress {
  height: 4px;
  background: #ECECEC;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 14px;
}
.stat-card .progress > span {
  display: block;
  height: 100%;
  background: var(--dark);
  border-radius: 2px;
}
.stat-card .stat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 20px;
  padding: 0 10px;
}
.stat-card .stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-card .stat-icon img {
  transform: translateY(-2px);
  width: 22px;
  height: 22px;
}
.stat-card .stat-label {
  font-size: 13px;
  font-weight: 500;
  flex: 1;
}
.stat-card .stat-value {
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}
.stat-card .stat-value .unit {
  font-weight: 400;
  color: var(--subtle);
}

.home-stage {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 370px;
  margin: 10px 0;
}
.calc-img {
  margin-top: 15px;
  margin-right: 25px;
  position: absolute;
  right: 0;
  width: auto;
  height: 370px;
  max-width: 70%;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.18));
}
.home-stage .calc-placeholder {
  width: 220px;
  height: 340px;
  background: var(--surface-soft);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
}

.sidebar {
  position: absolute;
  left: 50px;
  background: var(--surface);
  border-radius: 13px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  z-index: 2;
}
.sidebar a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1px 0;
  color: var(--text);
  text-decoration: none;
}
.sidebar a img {
  width: 23px;
  height: 23px;
}
.sidebar a:hover {
  background: var(--surface-soft);
}
.sidebar a:not(:last-child) {
  border-bottom: 2px solid rgba(0,0,0,0.1);
}

.last-update {
  position: relative;
  left: 15px;
  color: var(--text-light);
  font-size: 12px;
  margin: 0 0 14px;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.10);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  backdrop-filter: blur(14px) saturate(180%);
  border-radius: 0;
  border-top: 1px solid rgba(255,255,255,0.5);
  box-shadow: none;
  padding: 13px 26px calc(13px + env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 50;
}
.bottom-nav a {
  width: 48px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  color: var(--subtle);
  opacity: 0.5;
  transition: opacity .15s;
}
.bottom-nav a:hover { opacity: 1; }
.bottom-nav a.active { background: transparent; opacity: 1; }
.bottom-nav img { width: 30px; height: 30px; }

.verify-section { margin-bottom: 28px; }
.verify-section .check {
  color: var(--accent);
  margin-left: 8px;
  font-weight: 700;
}

.empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--subtle);
  font-size: 14px;
}

.chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 12px;
}
.chip {
  padding: 8px 14px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.chip.selected {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.splash {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin: 32px auto 24px;
}


.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bg-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}
.bg-blobs .blob-1 { width: 240px; height: 240px; background: rgba(125,211,220,0.30); top: 60px;   right: -50px; }
.bg-blobs .blob-2 { width: 240px; height: 240px; background: rgba(167,232,239,0.26); top: 42%;    left: -70px; }
.bg-blobs .blob-3 { width: 280px; height: 280px; background: rgba(196,236,240,0.26); bottom: 60px; right: -60px; }

.glass-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

main { position: relative; z-index: 1; }


.glass,
.card, .stat-card,
.profile-section, .file,
.filter-card, .stat-card-sq,
.plan-hero, .plan-section,
.input-group input, .input-group textarea, .input-group select,
.cstage, .sec {
  position: relative !important;
  background: var(--glass-fill) !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
}

.auth-wrap {
  width: 100%;
  max-width: 400px;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 4px 24px var(--nav-clear);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-head { text-align: center; margin: 4px 0 22px; }
.auth-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
}
.auth-sub { color: var(--subtle); font-size: 13px; margin: 0; }

.auth-tabs {
  position: relative;
  display: flex;
  padding: 5px;
  border-radius: 16px;
  margin: 0 0 20px;
  background: linear-gradient(135deg, rgba(198,240,246,0.55), rgba(160,228,238,0.4));
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.auth-tab {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 11px 0;
  border: 0;
  background: transparent;
  color: var(--subtle);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s;
}
.auth-tab.is-active { color: var(--text); }
.auth-tab-pill {
  position: absolute;
  z-index: 0;
  top: 5px;
  left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  border-radius: 12px;
  background: rgba(255,255,255,0.68);
  -webkit-backdrop-filter: blur(5px) saturate(160%);
  backdrop-filter: blur(5px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.95);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}
.auth-tabs[data-active="signup"] .auth-tab-pill { transform: translateX(100%); }

.auth-form { display: block; }
.auth-form.is-hidden { display: none; }

.auth-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 16px;
  margin-bottom: 14px;
  position: relative;
  background: linear-gradient(135deg, rgba(198,240,246,0.52), rgba(160,228,238,0.36));
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: border-color .15s;
}
.auth-field:focus-within {
  border-color: rgba(125,211,220,0.85);
}
.auth-field-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3E9AA8;
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.55);
}
.auth-field-icon svg { width: 20px; height: 20px; }
.auth-field-body { flex: 1; min-width: 0; }
.auth-field-body label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--subtle);
  font-weight: 600;
  margin-bottom: 2px;
}
.auth-field-body input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
}
.auth-field-body input:focus { outline: none; }
.auth-field-body input::placeholder { color: rgba(84,84,84,0.4); }
.auth-eye {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--subtle);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: transform .1s, color .15s;
}
.auth-eye svg { width: 21px; height: 21px; }
.auth-eye .eye-off { display: none; }
.auth-eye.is-on { color: #3E9AA8; }
.auth-eye.is-on .eye-on { display: none; }
.auth-eye.is-on .eye-off { display: block; }
.auth-eye:active { transform: scale(.9); }

.auth-btn {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 16px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, #34C0D6 0%, #2A93C7 100%);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.45);
  transition: transform .12s, opacity .2s;
}
.auth-btn:hover { opacity: .95; }
.auth-btn:active { transform: scale(.985); }

.auth-forgot {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: #2A93C7;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-back {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 14px);
  left: 18px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text);
  background: var(--glass-fill);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  z-index: 5;
  transition: transform .1s;
}
.auth-back svg { width: 20px; height: 20px; }
.auth-back:active { transform: scale(.92); }

.code-inputs {
  display: flex;
  gap: 9px;
  justify-content: space-between;
  margin: 4px 0 20px;
}
.code-box {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  height: 58px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  font-family: inherit;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(198,240,246,0.52), rgba(160,228,238,0.36));
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: border-color .15s, transform .1s;
}
.code-box:focus {
  outline: none;
  border-color: rgba(125,211,220,0.9);
  transform: translateY(-1px);
}
.auth-resend {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding: 6px;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--subtle);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
}
.auth-resend b { color: #2A93C7; }

.survey-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin: 2px 0 22px;
}
.survey-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(120,150,160,0.25);
  transition: background .25s, width .25s;
}
.survey-dot.on {
  background: var(--accent);
  width: 22px;
  border-radius: 4px;
}
.opt-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.opt-list.row {
  flex-direction: row;
}
.opt-list.row .opt {
  flex: 1 1 0;
  justify-content: center;
  font-size: 17px;
  padding: 18px 16px;
}
.opt {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 15px 16px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(198,240,246,0.5), rgba(160,228,238,0.34));
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .12s, border-color .15s;
}
.opt:active { transform: scale(.985); }
.opt.is-sel { border-color: rgba(125,211,220,0.95); }
.opt-ic {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3E9AA8;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.5);
}
.opt-ic svg { width: 20px; height: 20px; }
.survey-other {
  margin-top: 12px;
  display: none;
  gap: 10px;
  align-items: center;
}
.survey-other.show { display: flex; }
.survey-other input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 15px;
  border-radius: 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  background: linear-gradient(135deg, rgba(198,240,246,0.5), rgba(160,228,238,0.34));
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.survey-other input:focus { outline: none; border-color: rgba(125,211,220,0.9); }
.survey-other button {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #34C0D6 0%, #2A93C7 100%);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.45);
}
.survey-other button svg { width: 22px; height: 22px; }
.survey-skip {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 22px;
  padding: 8px;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--subtle);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
}
