/* SlateHub brand foundation */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@300;400;500;600;700;800&family=Newsreader:ital,opsz,wght@1,18..72,400;1,18..72,500;1,18..72,600&display=swap');

:root {
  /* Colors */
  --sh-bg: #0F0D0B;          /* deep warm black */
  --sh-bg-2: #1A1715;        /* card / elevated */
  --sh-cream: #E8E2D0;       /* warm off-white text */
  --sh-cream-dim: #9A958A;   /* low-contrast cream */
  --sh-red: #E85335;         /* signature vermillion */
  --sh-red-deep: #B53A20;
  --sh-red-glow: #FF6B47;
  --sh-line: rgba(232, 226, 208, 0.14);

  /* Type */
  --sh-display: 'Archivo Black', 'Helvetica Neue', sans-serif; /* @kind font */
  --sh-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace; /* @kind font */
}

.sh-display {
  font-family: var(--sh-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

.sh-mono {
  font-family: var(--sh-mono);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sh-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.55em 1.1em;
  font-family: var(--sh-mono);
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.sh-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sh-red);
  color: #fff;
  border-radius: 999px;
  padding: 0.85em 1.5em;
  font-family: var(--sh-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.sh-wordmark {
  font-family: var(--sh-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
}
.sh-wordmark sup {
  font-family: var(--sh-mono);
  font-weight: 400;
  font-size: 0.42em;
  margin-left: 0.08em;
  transform: translateY(-0.2em);
  display: inline-block;
}

/* Film-grain noise overlay — adds subtle texture without an image asset */
.sh-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
