html {
  /* From the brand guidelines: */
  --blue: #2c296a;
  --orange: #ec8058;
  --green: #45c766;
  --purple: #a66cff;
  --demi-bold: 550; /* font weight--I'm just guessing here :/ */
  --h1-size: 40px;
}
@media (max-width: 40rem) {
  html {
    --h1-size: 32px;
  }
}

html {
  --nav-gap: 0.5rem;
  --first-hero-gradient: linear-gradient(
    135deg,
    color(from white srgb r g b / 20%) 0%,
    color(from var(--purple) srgb r g b / 20%) 100%
  );
  --nav-gradient: var(--blue);
  --nav-gradient-hover-filter: brightness(200%) saturate(50%);
  --cta-gradient: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  --cta-gradient-hover-filter: brightness(150%) saturate(120%);
  --nav-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --nav-text: white;
}

html {
  background-color: white;
  color: var(--blue);
  font-family: Exo, Arial, Helvetica, sans-serif;
  font-size: 14pt;
}

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

body {
  display: flex;
  flex-direction: column;
}

* {
  transition: backdrop-filter 0.3s ease;
}

h1,
nav.cta {
  font-size: var(--h1-size);
  font-weight: bold;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

h1 {
  color: var(--purple);
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--blue);
  font-weight: var(--demi-bold);
}

p {
  max-width: 39rem;
  margin: 1rem auto;
  text-align: justify;
}

strong {
  font-weight: inherit;
  color: var(--orange);
}

em {
  font-style: inherit;
  color: var(--green);
}

nav {
  margin: 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--nav-gap);
  padding: 0;
  background: var(--nav-gradient);
  border-radius: 1rem;
  box-shadow: var(--nav-shadow);
}
nav.cta {
  margin-left: auto;
  margin-right: auto;
  background: var(--cta-gradient);
  font-size: var(--h1-size);
}
nav.cta a {
  border-radius: 1rem;
}
nav.cta a:hover {
  backdrop-filter: var(--cta-gradient-hover-filter);
}
nav a {
  text-decoration: none;
  color: var(--nav-text);
  font-weight: var(--demi-bold);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
nav a:hover {
  backdrop-filter: var(--nav-gradient-hover-filter);
}

body > nav {
  position: sticky;
  top: 0;
  margin: 0;
  border-radius: 0;
  padding: 0 1rem;
}
body > nav > * {
  vertical-align: middle;
}
body > nav > .logo {
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
}
body > nav > .logo > img {
  height: 32px;
}
body > nav > .logo span {
  font-weight: var(--demi-bold);
  font-size: 32px;
  line-height: 1;
}
body > nav > .links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: var(--nav-gap);
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

section.hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  align-content: center;
  justify-content: center;
  min-height: 80vh;
  padding: 1rem 1rem;
  background: var(--first-hero-gradient);
}

section.slide {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 1rem 1rem;
  margin: 6rem 0;
}

section.call-response {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
section.call-response > h1, section.call-response > nav.cta {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

ul.points-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 60rem) {
  ul.points-3col {
    grid-template-columns: 1fr;
  }
}
ul.points-3col > li {
  display: block;
  text-align: center;
  list-style: none;
}

.oryonix {
  text-transform: uppercase;
}
.oryonix .oryo {
  color: var(--orange);
}