/*
 * Brand ownership only: SMILES colors, lockup, wordmark, and contrast.
 * Page layout and responsive workspace behavior belong in workspace.css.
 */
:root {
  --smiles-coral: #fb7185;
  --smiles-teal: #2dd4bf;
  --smiles-blue: #38bdf8;
  --smiles-ink: #07111f;
  --smiles-glow: 0 14px 40px rgba(45, 212, 191, .16);
}

.smiles-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: max-content;
  margin-bottom: 12px;
  color: var(--text);
  text-decoration: none;
}

.smiles-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 13px;
  box-shadow: var(--smiles-glow);
}

.smiles-word {
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: .9;
}

.smiles-word span {
  color: transparent;
  background: linear-gradient(90deg, var(--smiles-blue), var(--smiles-teal) 56%, var(--smiles-coral));
  background-clip: text;
  -webkit-background-clip: text;
}

.smiles-tagline {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .03em;
}

.smiles-powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.smiles-powered img {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}

.smiles-powered strong { color: var(--text); }
.logo .smiles-lockup { margin: 0; }
.logo .smiles-mark { width: 50px; height: 50px; flex-basis: 50px; }
.logo .smiles-word { font-size: 30px; }
.center-page .smiles-lockup { margin-inline: auto; margin-bottom: 24px; }
.topbar .smiles-lockup { margin-bottom: 14px; }

.brand > .smiles-lockup + .eyebrow,
.topbar > div > .smiles-lockup + .eyebrow {
  margin-top: 2px;
}

.smiles-brand-rule {
  height: 3px;
  margin: 0;
  border: 0;
  background: linear-gradient(90deg, var(--smiles-blue), var(--smiles-teal), var(--smiles-coral));
}

@media (max-width: 680px) {
  .smiles-lockup { gap: 9px; }
  .smiles-mark { width: 38px; height: 38px; flex-basis: 38px; }
  .smiles-word { font-size: 22px; }
  .smiles-tagline { font-size: 10px; }
  .topbar .smiles-lockup { margin-bottom: 8px; }
}

@media (prefers-contrast: more) {
  .smiles-word span {
    color: var(--text);
    background: none;
  }

  .smiles-mark { outline: 2px solid currentColor; }
}
