:root {
  color-scheme: light;
  --ink: #0d0d0d;
  --line: #eadff0;
  --magenta: #9e007e;
  --magenta-dark: #86006e;
  --magenta-light: #cd8acd5c;
  --violet: #6747ef;
  --blue: #4aa3ff;
  --dark-blue: #206fed;
  --LInear: linear-gradient(90deg, #9e007e 0%, #206fed 33%);
  --white: #ffffff;
  --light: #fcf8fc;
  --shadow: 0 22px 55px rgba(60, 36, 80, 0.12);
  --radius: 20px;
  --max: 1110px;
  /* Platform */
  --platform-muted: #5c5260;
  --platform-ink: #111111;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
}

.page-wrapper {
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  overflow: unset;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #111;
  outline-offset: 4px;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 20;
  inset: 14px auto auto 14px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 800px;
  margin: 24px 0;
  font-size: clamp(2.5rem, 8vw, 3.45rem) !important;
  line-height: 110%;
  font-weight: 800;
}

h2 {
  font-size: clamp(2.38rem, 5vw, 2.63rem);
  font-weight: 700;
  line-height: 110%;
}

h3 {
  font-size: clamp(1.5rem, 5vw, 1.75rem);
  line-height: 1.15;
}

.full-width {
  width: 100% !important;
}

/* Platform */
.page-wrap {
  margin-inline: auto;
}
