@import url("https://fonts.bunny.net/css?family=lora:400,400i,600,700,700i");

:root {
  color-scheme: dark;
  --bg: #031526;
  --bg-2: #061f33;
  --surface: #09243a;
  --surface-2: #0d2c42;
  --line: rgba(255, 255, 255, 0.16);
  --text: #f7fbff;
  --muted: #b6c5cf;
  --teal: #2bc7bd;
  --teal-dark: #15958f;
  --yellow: #ffd24d;
  --warning: #f2b84b;
  --max: 1180px;
  --font: "Aptos", "Montserrat", "Helvetica Neue", sans-serif;
  --font-serif: "Lora", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
}

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

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

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

button {
  cursor: pointer;
}

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

h1 {
  font-size: 6.2rem;
  line-height: 0.94;
  letter-spacing: 0;
  margin-bottom: 24px;
  white-space: pre-line;
}

h2 {
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-tight {
  padding-top: 76px;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 30px;
}

.page-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0 80px;
}

.page-intro {
  max-width: 760px;
  font-size: 1.25rem;
  color: #d5e1e8;
  margin-bottom: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--yellow);
  color: #081625;
}

.button-primary:hover {
  background: #ffe080;
}

.button-light {
  background: #f7fbff;
  color: #071827;
}

.button-outline {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.38);
}

.kicker {
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0;
  font-size: 0.82rem;
}

@media (max-width: 760px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 64px 0;
  }

  .page-shell {
    width: min(100% - 28px, 980px);
    padding-top: 112px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2rem;
  }
}
