/* ============================================================
   Scale My Offer — Component styles ("Dispatch")
   Depends on colors_and_type.css for tokens.
   ============================================================ */

/* ---------- GLOW SYSTEM ----------
   Large, soft, heavily-blurred warm radial gradients.
   1–2 per view, behind glass/headlines, never behind body copy. */
.smo-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(28px);
  z-index: 0;
}
.smo-glow--hero {
  /* wide ellipse, top-center */
  width: 720px; height: 320px;
  left: 50%; top: -40px; transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
              rgba(255,166,0,0.16) 0%,
              rgba(255,215,0,0.10) 35%,
              rgba(255,215,0,0) 70%);
}
.smo-glow--corner {
  /* single circular glow tucked into a low corner */
  width: 460px; height: 460px;
  right: -120px; bottom: -160px;
  background: radial-gradient(circle at center,
              rgba(255,166,0,0.14) 0%,
              rgba(255,215,0,0) 65%);
}

/* ---------- GLASS CARD ---------- */
.smo-glass {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,215,0,0.03));
  border: 0.5px solid rgba(255,255,255,0.14);
  border-radius: var(--r-card);
  box-shadow: 0 8px 40px rgba(255,180,0,0.06),
              inset 0 1px 0 rgba(255,255,255,0.10);
}
.smo-glass--hero { border-radius: var(--r-hero); }

/* ---------- BUTTONS ---------- */
.smo-btn {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  border-radius: var(--r-button);
  padding: 12px 22px;
  border: 0.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s ease, box-shadow .15s ease,
              border-color .15s ease, color .15s ease, transform .1s ease;
}
.smo-btn:active { transform: scale(0.97); }

/* primary = solid gold, ink text */
.smo-btn--primary { background: var(--gold); color: var(--ink); }
.smo-btn--primary:hover { background: var(--gold-hover); }
.smo-btn--primary:active { background: var(--gold-press); }

/* glass secondary = translucent white, light border, off-white text */
.smo-btn--glass {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: var(--text-1);
  backdrop-filter: blur(8px);
}
.smo-btn--glass:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}

/* gold outline = transparent fill, gold border + text */
.smo-btn--outline {
  background: transparent;
  border-color: var(--gold-border);
  color: var(--gold);
}
.smo-btn--outline:hover { border-color: var(--gold); background: var(--gold-fill-08); }

/* ghost = plain text link w/ trailing arrow */
.smo-btn--ghost {
  background: transparent;
  color: var(--text-1);
  padding: 12px 8px;
}
.smo-btn--ghost:hover { color: var(--gold); }

/* ---------- LIVE BAR ----------
   thin strip, 2px gold left border, faint gold fill, square left / round right */
.smo-livebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-left: 2px solid var(--gold);
  background: var(--gold-fill-08);
  border-radius: 0 var(--r-chip) var(--r-chip) 0;
}
.smo-livebar__tag {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}
.smo-livebar__text { font-family: var(--sans); font-size: 14px; color: var(--text-2); }

/* ---------- NUMBERED CARD ----------
   mono number chip (gold on faint gold, 0.5px gold border) + title + desc */
.smo-numcard {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--ink-2);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r-card);
  transition: transform .1s ease, box-shadow .15s ease;
}
.smo-numcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,180,0,0.07);
}
.smo-chip {
  flex: none;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13px;
  color: var(--gold);
  background: var(--gold-fill-08);
  border: 0.5px solid var(--gold-border);
  border-radius: var(--r-chip);
  padding: 6px 10px;
  line-height: 1;
}

/* ---------- ACCENT BLOCK ----------
   2px gold left border, square left, rounded right. The single key line. */
.smo-accent-block {
  border-left: 2px solid var(--gold);
  background: var(--gold-fill-08);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: 16px 20px;
}

/* ---------- BLUEPRINT GRID (illustration ground) ---------- */
.smo-blueprint {
  background-color: var(--ink);
  background-image:
    linear-gradient(var(--grid-line) 0.5px, transparent 0.5px),
    linear-gradient(90deg, var(--grid-line) 0.5px, transparent 0.5px);
  background-size: 26px 26px;
}
