/* ── DESIGN TOKENS ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Roboto+Mono:wght@500;700&display=swap');

:root {
  /* Brand */
  --brand:       #C2185B;
  --brand-dark:  #880E4F;
  --brand-light: #FCE4EC;
  --brand-mid:   #E91E63;

  /* Gradient (Jupiter-style warm header) */
  --grad-start:  #E91E63;
  --grad-end:    #C2185B;

  /* Gold accents */
  --gold:        #F59E0B;
  --gold-light:  #FEF3C7;

  /* Semantic */
  --success:     #10B981;
  --success-bg:  #D1FAE5;
  --danger:      #EF4444;
  --danger-bg:   #FEE2E2;
  --warning:     #F59E0B;
  --warning-bg:  #FEF3C7;

  /* Neutrals */
  --white:       #FFFFFF;
  --bg:          #F8F9FC;
  --surface:     #FFFFFF;
  --surface2:    #F3F4F6;
  --border:      #E5E7EB;
  --text:        #111827;
  --text2:       #6B7280;
  --text3:       #9CA3AF;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-card: 0 2px 12px rgba(194,24,91,0.08);

  /* Radius */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  /* Typography */
  --font:        'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono:   'Roboto Mono', monospace;
}

/* ── RESET ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html, body {
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  max-width: 430px;
  margin: 0 auto;
}
button { font-family: var(--font); cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: var(--font); outline: none; }
a { text-decoration: none; color: inherit; }
img { display: block; }
