.sh-app, .sh-app * { box-sizing: border-box; margin: 0; padding: 0; }
.sh-app {
  min-height: 100vh; background: var(--sh-bg); color: var(--sh-fg);
  font-family: var(--sh-font-sans); font-size: 15.5px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.sh-app h1, .sh-app .sh-hero-title {
  font-family: var(--sh-font-hero); font-stretch: var(--sh-font-hero-stretch);
  font-weight: 900; text-transform: uppercase; line-height: 0.95; letter-spacing: -0.01em;
}
.sh-app .sh-kicker {
  font-family: var(--sh-font-mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sh-accent);
}
.sh-app a { color: inherit; text-decoration: none; }
.sh-card { background: var(--sh-bg-elevated); border: 1px solid var(--sh-line); border-radius: var(--sh-r-2xl); padding: 20px; }
.sh-pill {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--sh-font-mono);
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 9999px; border: 1px solid var(--sh-line); color: var(--sh-fg-muted);
}
.sh-pill--accent { color: var(--sh-accent-text); border-color: var(--sh-accent-line); background: var(--sh-accent-bg); }
/* Scoped under .sh-app deliberately.
   hello-elementor ships a reset that styles `[type="button"]` with a hard-coded pink
   outline. An attribute selector carries the same weight as a single class and the reset
   loads later, so a bare `.sh-btn` LOSES: every real <button> in the portal came out as a
   #c36 outline while the <a class="sh-btn"> next to it looked correct. Two classes settles
   it without !important. Anchors match `.sh-app .sh-btn` just the same. */
.sh-app .sh-btn, .sh-btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--sh-font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; border: 0; border-radius: 9999px;
  padding: 13px 22px; color: var(--sh-accent-ink); background: var(--sh-accent);
  transition: transform .18s ease;
}
.sh-app .sh-btn:hover, .sh-btn:hover { transform: translateY(-2px); }
.sh-app .sh-btn--ghost, .sh-btn--ghost { background: transparent; color: var(--sh-fg); border: 1px solid var(--sh-line); }
.sh-app .sh-btn:focus-visible { outline: 2px solid var(--sh-accent-line); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .sh-app *, .sh-app { transition: none !important; animation: none !important; }
}
