@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;700;800&display=swap");

:root {
  --bg: #fffaf2;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(15, 23, 42, 0.08);
  --ink: #172033;
  --muted: #6a7284;
  --coral: #ef6f6c;
  --teal: #1f9d8b;
  --mint: #d9f7e5;
  --sun: #ffc857;
  --lavender: #e9e4ff;
  --sky: #cfe8ff;
  --danger: #d64545;
  --shadow: 0 28px 70px rgba(239, 111, 108, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html,
body {
  scrollbar-gutter: stable;
}

body {
  font-family: "Outfit", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 87, 0.28), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(31, 157, 139, 0.16), transparent 24%),
    linear-gradient(180deg, #fff9ef 0%, #fff5fb 52%, #f6fbff 100%);
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--scroll-lock-offset, 0px);
}

.page {
  position: relative;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

.bg-orb {
  position: fixed;
  z-index: 0;
  filter: blur(18px);
  opacity: 0.7;
  pointer-events: none;
}

.bg-orb-a,
.bg-orb-c {
  top: 6%;
  left: -4rem;
  width: 14rem;
  height: 14rem;
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.8), rgba(239, 111, 108, 0.4));
  border-radius: 42% 58% 51% 49%;
}

.bg-orb-b,
.bg-orb-d {
  right: -3rem;
  bottom: 8%;
  width: 18rem;
  height: 18rem;
  background: linear-gradient(135deg, rgba(31, 157, 139, 0.36), rgba(207, 232, 255, 0.9));
  border-radius: 61% 39% 34% 66%;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.login-shell,
.app-shell {
  position: relative;
  z-index: 1;
}
