:root {
  --bg: #0d0d10;
  --bg-deep: #07080a;
  --panel: #17181d;
  --panel-soft: #22242b;
  --panel-strong: #111217;
  --paper: #f3f5f8;
  --paper-text: #17181d;
  --text: #f5f2eb;
  --muted: #a9abb2;
  --muted-strong: #c9c0b5;
  --gold: #f0a12a;
  --gold-soft: #ffd58a;
  --orange: #ff7418;
  --red: #6e1714;
  --red-soft: #a83228;
  --blue: #2390dd;
  --green: #73df83;
  --danger: #ff9b8a;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(240, 161, 42, 0.34);
  --dark-line: rgba(20, 22, 30, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: rgba(240, 161, 42, 0.36);
}

body.drawer-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.eyebrow,
.section-heading p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.1;
}

.centered {
  text-align: center;
}

.page-band {
  padding: 96px max(36px, calc((100vw - var(--max)) / 2));
}

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

.no-scroll {
  overflow: hidden;
}

@media (max-width: 680px) {
  .page-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 34px;
  }
}
