:root {
  --main: #38BDF8;
  --bg: #F6F8FB;
  --bg-soft: #FFFFFF;
  --bg-2: #FFFFFF;
  --text: #0A1428;
  --white: #FFFFFF;
  --muted: rgba(10,20,40,.6);
  --line: rgba(10,20,40,.12);
  --line-strong: rgba(10,20,40,.2);
  --accent: #38BDF8;
  --ease: cubic-bezier(.22,.68,.06,1);
  --ease-soft: cubic-bezier(.22,.9,.24,1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  overflow-x: hidden;
}

body.is-menu-open,
body.menu-locked {
  overflow: hidden;
  overscroll-behavior: contain;
}

html.menu-locked {
  overflow: hidden;
  overscroll-behavior: contain;
}

input,
textarea,
select {
  font-size: max(16px, 1rem);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
}

ul,
ol,
p {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
