/* GrowthOS marketing design system — shared across myaimarketingguy.com
 * Canonical: docs/DESIGN_SYSTEM.md (in growthos repo)
 * Do not fork colors/logo rules per page.
 */
:root {
  --bg: #07090d;
  --bg-elevated: #0e1219;
  --primary: #34d399;
  --teal: #2dd4bf;
  --violet: #a78bfa;
  --amber: #fbbf24;
  --gradient-brand: linear-gradient(125deg, #6ee7b7 0%, #2dd4bf 40%, #a78bfa 100%);
  --gradient-btn: linear-gradient(135deg, #34d399 0%, #0d9488 55%, #7c3aed 160%);
  --version: "20260728b";
}

html { scroll-behavior: smooth; }
body {
  background: #07090d;
  color: #e4e4e7;
  -webkit-font-smoothing: antialiased;
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

/* Logo — always the PNG lockup; never replace with text "GrowthOS" */
.site-logo {
  display: block;
  object-fit: contain;
  object-position: left center;
}
.site-logo--nav {
  height: 2.5rem; /* 40px */
  width: auto;
  max-width: 11rem;
}
@media (min-width: 640px) {
  .site-logo--nav { height: 2.75rem; }
}
.site-logo--footer {
  height: 3rem;
  width: auto;
  max-width: 12rem;
}
.site-logo--hero {
  height: 4rem;
  width: auto;
  max-width: 16rem;
}
@media (min-width: 640px) {
  .site-logo--hero { height: 5rem; }
}
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
}
.glass-strong {
  background: linear-gradient(145deg, rgba(14,18,25,0.94) 0%, rgba(10,12,16,0.9) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(52,211,153,0.16);
}
.text-gradient {
  background: linear-gradient(125deg, #6ee7b7 0%, #2dd4bf 40%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn-glow {
  background: linear-gradient(135deg, #34d399 0%, #0d9488 55%, #7c3aed 160%);
  background-size: 140% 140%;
  box-shadow: 0 0 24px rgba(52,211,153,0.35), 0 4px 20px rgba(13,148,136,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.35s ease;
}
.btn-glow:hover {
  transform: translateY(-2px) scale(1.02);
  background-position: 100% 50%;
  box-shadow: 0 0 40px rgba(52,211,153,0.45), 0 8px 28px rgba(167,139,250,0.22);
}
.nav-blur {
  background: rgba(7,9,13,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
}
.prose-legal h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fafafa;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.prose-legal p,
.prose-legal li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #a1a1aa;
}
.prose-legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}
.prose-legal li { margin: 0.35rem 0; }
.prose-legal a {
  color: #5eead4;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose-legal a:hover { color: #a78bfa; }
.prose-legal strong { color: #e4e4e7; font-weight: 600; }
::selection {
  background: rgba(52,211,153,0.35);
  color: #fff;
}
