:root {
  color-scheme: light;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", Arial, sans-serif;
  --input-shadow: inset 0 0 0 1px rgb(19 19 22 / 0.2);
  --input-shadow-focus: 0 0 0 1.5px rgb(19 19 22 / 1);
  --dropdown-shadow: 0 0 0 1px rgb(19 19 22 / 0.1), 0 1px 5px -4px rgb(19 19 22 / 0.7), 0 4px 8px rgb(32 42 54 / 0.05);
  --primary: #2F3037;
  --secondary: #5E5F6E;
  --tertiary: #747686;
  --quaternary: #9394A1;
  --surface: #F6F6F7;
  --highlighted: rgb(0 0 0 / 0.06);
  --background: #ffffff;
  --stroke: #E9E9EC;
  --pro-accent: #2C4CFF;
  --accent: #2C4CFF;
  --accent-light: #CDD5FF;
  --accent-dark: #020E51;
}

* {
  font-family: var(--font-sans);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.5em;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-size: 13px;
  line-height: 1.5;
  overscroll-behavior: none;
  background: var(--background);
  color: var(--primary);
}

img {
  width: 100%;
  height: auto;
}

.coming-soon-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-content {
  max-width: 600px;
  padding: 0 32px;
  text-align: center;
}

.logo {
  max-width: 128px;
  margin: 0 auto 12px;
}

h1 {
  font-size: 40px;
  line-height: 1.25em;
  font-weight: 700;
  margin-bottom: 16px;
}

h2 {
  font-size: 24px;
  line-height: 1.4em;
  font-weight: 700;
  margin-bottom: 16px;
}

h3 {
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 700;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  line-height: 1.5em;
  margin: 0;
}

p,
ul {
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: 16px;
}

ul {
  padding-left: 3em;
}

li {
  font-size: 14px;
  line-height: 1.5em;
}

.policy-section {
  margin-bottom: 32px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.container {
  max-width: 900px;
  padding: 0 32px;
  margin: auto;
}

.document-container {
  padding: 64px 0;
}

.coming-soon-button {
  font-size: 13px;
  appearance: none;
  border: none;
  outline: none;
  height: 32px;
  background: var(--highlighted);
  color: var(--secondary);
  padding: 0 12px;
  border-radius: 6px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  margin: 16px 0;
}

a {
  font-size: 13px;
  color: var(--accent-dark);
}

.features-list {
  list-style: none;
  margin: 32px 0;
  text-align: left;
  padding: 0 32px;
}

.features-list li {
  margin-bottom: 8px;
  font-size: 16px;
}

.features-list li:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  background: var(--pro-accent);
  position: relative;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20px' viewBox='0 -960 960 960' width='20px' fill='%23000000'%3E%3Cpath d='M389-267 195-460l51-52 143 143 325-324 51 51-376 375Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20px' viewBox='0 -960 960 960' width='20px' fill='%23000000'%3E%3Cpath d='M389-267 195-460l51-52 143 143 325-324 51 51-376 375Z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  top: 5px;
  margin-right: 12px;
}

.features-list li:last-child {
  margin-bottom: 0;
}

.button {
  font-size: 13px;
  appearance: none;
  border: none;
  outline: none;
  height: 32px;
  background: var(--highlighted);
  color: var(--secondary);
  padding: 0 12px;
  border-radius: 6px;
  font-weight: 500;
  font-family: var(--font-sans);
  margin-bottom: 32px;
}

.links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
