:root {
  --trypify-primary: #3b82f6;
  --trypify-primary-light: #60a5fa;
  --trypify-primary-dark: #2563eb;
  --trypify-sky: #38bdf8;
  --trypify-accent: #8b5cf6;
  --trypify-bg: #f8fafc;
  --trypify-bg-secondary: #f1f5f9;
  --trypify-text-primary: #0f172a;
  --trypify-text-secondary: #475569;
  --trypify-text-muted: #94a3b8;
  --trypify-glass-bg: rgba(255, 255, 255, .68);
  --trypify-glass-border: rgba(255, 255, 255, .72);
  --trypify-line: rgba(148, 163, 184, .23);
  --trypify-radius-sm: 10px;
  --trypify-radius-md: 12px;
  --trypify-radius-lg: 16px;
  --trypify-radius-xl: 20px;
  --trypify-radius-hero: 24px;
  --trypify-shadow-sm: 0 8px 24px rgba(15, 23, 42, .055);
  --trypify-shadow-md: 0 18px 50px rgba(15, 23, 42, .10);
  --ink: var(--trypify-text-primary);
  --muted: var(--trypify-text-secondary);
  --paper: var(--trypify-bg);
  --navy: var(--trypify-primary-dark);
  --coral: var(--trypify-accent);
  --line: var(--trypify-line);
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f8fbff 0%, #eff6ff 45%, #f8f5ff 100%);
  color: var(--trypify-text-primary);
  font: 15px/1.55 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before, body::after {
  position: fixed;
  z-index: -1;
  width: 31rem;
  height: 31rem;
  border-radius: 50%;
  content: "";
  filter: blur(100px);
  opacity: .14;
  pointer-events: none;
}
body::before { top: -15rem; right: -11rem; background: #60a5fa; }
body::after { bottom: -18rem; left: -13rem; background: #a78bfa; }

a { color: var(--trypify-primary-dark); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(96, 165, 250, .42);
  outline-offset: 2px;
}

.glass, .card, .day-card, .empty, .hero, .map-placeholder, .auth.card {
  border: 1px solid var(--trypify-glass-border);
  background: var(--trypify-glass-bg);
  box-shadow: var(--trypify-shadow-sm);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}
.muted { color: var(--trypify-text-secondary); }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
