/* AlwaysIn brand tokens — from alwaysin-brand-guide.md */
:root {
  --indigo: #3D2E7C;
  --purple: #6C5CE7;
  --violet: #8B7FD4;
  --lavender: #A594F9;
  --whisper: #F0EDFA;
  --midnight: #1E1640;

  --success: #34D399;
  --alert: #F97066;
  --warning: #FBBF24;
  --neutral: #64748B;

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--whisper);
  font-family: var(--font-body);
  color: var(--midnight);
}
/* Demo stages need to lock height + hide overflow; pages without .stage scroll normally. */
body:has(.stage) {
  height: 100%;
  overflow: hidden;
}

/* 1:1 square stage — universal embed, works desktop + mobile + IG feed */
.stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  background: var(--whisper);
}

.stage-inner {
  position: relative;
  aspect-ratio: 1 / 1;
  width: min(100vw, 100vh);
  height: min(100vw, 100vh);
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, var(--whisper) 100%);
}
