/* DrOOming wordmark — shared across landing, app, auth */

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
  font-family: 'Fredoka', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: inherit;
  white-space: nowrap;
}

.brand-mark:hover {
  text-decoration: none;
}

.brand-d,
.brand-m {
  letter-spacing: 0.01em;
}

.brand-eyes {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0 1px;
}

.brand-eye {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05em;
  height: 1.15em;
  font-size: 1.08em;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  background: currentColor;
  color: inherit;
  -webkit-text-fill-color: transparent;
}

.brand-eye::before,
.brand-eye::after {
  content: '';
  position: absolute;
  top: 38%;
  width: 0.18em;
  height: 0.18em;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
}

.brand-eye::before {
  left: 28%;
}

.brand-eye::after {
  right: 28%;
}

/* Landing — dark wordmark on light nav */
.landing-logo .brand-mark {
  color: #2d3436;
  font-size: 1.5rem;
}

.landing-logo .brand-eye {
  background: #6c5ce7;
}

.landing-logo .brand-eye::before,
.landing-logo .brand-eye::after {
  background: #fff;
}

/* App menu — light wordmark on gradient */
.app-header .brand-mark {
  color: #fff;
  font-size: clamp(1.35rem, 4.5vw, 1.65rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.app-header .brand-eye {
  background: #fff;
}

.app-header .brand-eye::before,
.app-header .brand-eye::after {
  background: #6c5ce7;
}

.app-title.brand-title-wrap {
  margin: 0;
  flex: none;
  min-width: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-shadow: none;
}

.app-title.brand-title-wrap .brand-mark {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* Auth — centered on gradient */
.auth-logo-link .brand-mark {
  color: #fff;
  font-size: 1.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.auth-logo-link .brand-eye {
  background: #fff;
}

.auth-logo-link .brand-eye::before,
.auth-logo-link .brand-eye::after {
  background: #6c5ce7;
}
