@charset "UTF-8";
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-100-Hairline.otf") format("opentype");
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-100-HairlineItalic.otf") format("opentype");
  font-weight: 100;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-200-Thin.otf") format("opentype");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-200-ThinItalic.otf") format("opentype");
  font-weight: 200;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-300-Light.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-300-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-400-Book.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-400-BookItalic.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-500-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-500-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-600-Semi.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-600-SemiItalic.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-700-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-700-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-800-Hevy.otf") format("opentype");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-800-HevyItalic.otf") format("opentype");
  font-weight: 800;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-900-Black.otf") format("opentype");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("/assets/fonts/Jost-900-BlackItalic.otf") format("opentype");
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}
:root {
  --blue: #339ed4;
  --blue-20: rgba(51, 158, 212, 0.2);
  --blue-0: rgba(51, 158, 212, 0);
  --yellow: #ffeb00;
  --black: #000000;
  --black-04: rgba(0, 0, 0, 0.04);
  --red: #ff1100;
  --white: #ffffff;
  --green: #11aa00;
  --foreground: var(--black);
  --foreground-04: var(--black-04);
  --background: var(--white);
}

:root {
  font: 400 20px/1.3em "Jost";
  --header-height: 3rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

main {
  margin: 0;
  padding: 0 1.8rem;
}
html.js main {
  margin: var(--header-height) 0 0;
}
@media (min-width: 768px) {
  main, html.js main {
    margin: var(--header-height) 0 0;
  }
}
@media (min-width: 1280px) {
  main {
    display: grid;
    grid-template-columns: 1fr repeat(12, 56px) 1fr;
    gap: 0 32px;
  }
}
main > header {
  margin: 0 -1.8rem;
  padding: 2rem 1.8rem;
  background: var(--blue);
  color: var(--white);
  height: calc(100vw - var(--header-height));
  max-height: calc(50vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-column: 1/-1;
  position: relative;
}
@media (min-width: 1280px) {
  main > header {
    display: grid;
    grid-template-columns: 1fr repeat(12, 56px) 1fr;
    gap: 0 32px;
    height: auto;
    max-height: none;
    padding: 4rem;
  }
}
main > header h1 {
  font-size: 2rem;
  line-height: 1.1em;
  font-weight: 500;
  margin: 0;
  grid-column: 2/-2;
  z-index: 4;
}
@media (min-width: 1280px) {
  main > header h1 {
    font-size: 4rem;
  }
}
main > header .intro {
  grid-column: 2/-2;
  z-index: 4;
  max-width: 16rem;
  margin-top: 1rem;
}
@media (min-width: 1280px) {
  main > header .intro {
    grid-column: 4/span 8;
    margin-top: 56px;
    max-width: none;
  }
}
main > header.large {
  height: calc(150vw - var(--header-height));
  max-height: calc(75vh - var(--header-height));
}
@media (min-width: 1280px) {
  main > header.large {
    display: grid;
    grid-template-columns: 1fr repeat(12, 56px) 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 32px;
    height: auto;
    min-height: calc(480px + var(--header-height));
    padding: 6rem 0 6rem;
  }
}
main > header.large::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(var(--blue), var(--blue-20));
  z-index: 2;
}
@media (min-width: 1280px) {
  main > header.large::before {
    display: none;
  }
}
main > header.large h1 {
  font-size: 3rem;
  line-height: 1.1em;
  margin-top: 3rem;
}
@media (min-width: 1280px) {
  main > header.large h1 {
    font-size: 6rem;
    line-height: 1.1em;
    grid-column: 2/span 7;
  }
}
@media (min-width: 1280px) {
  main > header.large .intro {
    grid-column: 9/span 4;
    margin-top: calc(56px - 1.5rem + 3.9rem);
  }
}
main > header.large img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@media (min-width: 1280px) {
  main > header.large img {
    top: calc((100% - 480px - var(--header-height)) / 2);
    left: 0;
    width: 480px;
    height: 480px;
    grid-column: 9/-1;
  }
  main > header.large img ~ h1 {
    margin-top: 0;
  }
  main > header.large img ~ .intro {
    grid-column: 4/span 4;
    margin-top: calc(56px - 1.5rem);
  }
}
main > section {
  margin: 0 -1.8rem;
  padding: 0 1.8rem;
}
@media (min-width: 1280px) {
  main > section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr repeat(12, 56px) 1fr;
    gap: 0 32px;
  }
}
main .simple-content {
  margin: 2rem 0;
  grid-column: 4/span 8;
}
@media (min-width: 1280px) {
  main .simple-content {
    margin: 3rem 0;
  }
}

h2 {
  font-size: 2rem;
  line-height: 1.025em;
  font-weight: 500;
  margin: 3rem 0 1.5rem;
}
h2:first-child {
  margin-top: 0;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.2em;
  font-weight: 500;
  margin: 1.5rem 0 1rem;
}
h3:first-child {
  margin-top: 0;
}

p {
  margin: 0.5rem 0 0;
}
p:first-child {
  margin-top: 0;
}

.btn,
button {
  display: flex;
  width: 100%;
  min-height: 2rem;
  border: 2px solid var(--foreground);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--foreground);
  font: 0.9rem/1rem "Jost";
  justify-content: center;
  align-items: center;
  padding: 0.4rem 0.8rem;
  margin: 1rem 0 0;
  background: none;
  cursor: pointer;
}
.btn:hover,
button:hover {
  color: var(--blue);
  border-color: var(--blue);
}

a {
  font-weight: 500;
  color: var(--foreground);
  text-decoration-thickness: 2px;
}
a:hover {
  color: var(--blue);
}

section.buynow {
  padding: 54px 0 0;
  margin-left: calc(max(0px, 100vw - 16rem - 3.6rem) * 0.5);
  max-width: 16rem;
  width: 100%;
  grid-column: 6/span 4;
}
@media (min-width: 1280px) {
  section.buynow {
    margin-left: 0;
    display: block;
    padding: 160px 0 0;
  }
}

svg {
  overflow: visible;
}
svg .line {
  stroke: var(--foreground);
  stroke-width: 4px;
  fill: none;
}
svg .line.line--miterlimit {
  stroke-miterlimit: 10;
}
svg .fill {
  fill: var(--foreground);
  stroke: none;
}

.visually-hidden {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

body > header {
  top: 0;
  left: 0;
  width: 100%;
  background: var(--blue);
  color: var(--white);
  padding: 0 1rem;
  z-index: 100;
}
html.js body > header {
  position: fixed;
  height: var(--header-height);
}
@media (min-width: 768px) {
  body > header, html.js body > header {
    position: fixed;
    height: var(--header-height);
  }
}
@media (min-width: 1280px) {
  body > header {
    display: flex;
    justify-content: center;
    padding: 0;
  }
}
html.js body > header .layout-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}
@media (min-width: 768px) {
  body > header .layout-inner, html.js body > header .layout-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
  }
}
@media (min-width: 1280px) {
  body > header .layout-inner {
    width: 1024px;
  }
}
body > header .logo {
  display: block;
  padding: calc((var(--header-height) - 25.3px) / 2) 0;
}
body > header .logo svg {
  display: block;
  height: 25.3px;
  overflow: visible;
  margin-left: 2px;
}
body > header .logo svg .fill {
  fill: var(--white);
  stroke: none;
}
body > header .logo:hover svg .fill, body > header .logo:focus svg .fill {
  fill: var(--yellow);
}
body > header .logo:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}
body > header button#menu-toggle {
  display: none;
  width: auto;
  min-height: unset;
  border: none;
  color: var(--white);
  padding: 0 0 0 4px;
  margin: 0;
}
html.js body > header button#menu-toggle {
  display: flex;
}
@media (min-width: 768px) {
  html.js body > header button#menu-toggle {
    display: none;
  }
}
body > header button#menu-toggle svg {
  display: block;
  width: 24px;
}
body > header button#menu-toggle svg .line {
  stroke-width: 2px;
  stroke: var(--white);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
body > header button#menu-toggle:hover, body > header button#menu-toggle:focus-visible {
  color: var(--yellow);
}
body > header button#menu-toggle:hover svg .line, body > header button#menu-toggle:focus-visible svg .line {
  stroke: var(--yellow);
}
body > header button#menu-toggle:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
body > header button#menu-toggle[aria-expanded=true] svg .line.line--top {
  transform: rotate(45deg) translateY(4px);
}
body > header button#menu-toggle[aria-expanded=true] svg .line.line--mid {
  transform: scaleX(0%);
}
body > header button#menu-toggle[aria-expanded=true] svg .line.line--bot {
  transform: rotate(-45deg) translateY(-4px);
}
body > header button#menu-toggle[aria-expanded=true] + nav {
  clip-path: inset(0 0 0);
}
body > header nav {
  width: 100%;
  background: var(--blue);
  padding-bottom: 0.8rem;
}
@media (min-width: 768px) {
  body > header nav {
    width: unset;
    background: unset;
    padding-bottom: unset;
  }
}
html.js body > header nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  clip-path: inset(0 0 100%);
  transition: clip-path 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  visibility: hidden;
}
@media (min-width: 768px) {
  html.js body > header nav {
    visibility: visible;
    position: unset;
    overflow: unset;
    top: unset;
    left: unset;
    clip-path: unset;
    max-height: unset;
    transition: unset;
  }
}
html.js body > header nav.open-strict {
  visibility: visible;
}
body > header nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (min-width: 768px) {
  body > header nav ul {
    display: flex;
  }
}
body > header nav ul li {
  display: flex;
}
body > header nav ul li::before {
  content: "​";
  display: block;
}
@media (min-width: 768px) {
  body > header nav li:not(:first-child) {
    margin-left: 0.5rem;
  }
}
body > header nav a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  height: 2.4rem;
  line-height: 2.3rem;
}
html.js body > header nav a {
  padding: 0 1rem;
}
@media (min-width: 768px) {
  body > header nav a, html.js body > header nav a {
    padding: 0;
    height: unset;
    line-height: unset;
  }
}
body > header nav a:hover, body > header nav a:focus {
  color: var(--yellow);
}
body > header nav a:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

body > footer {
  width: 100%;
  background: var(--black);
  color: var(--white);
  margin: 284px 0 0;
  padding: 1.8rem 1.8rem 3rem;
  position: relative;
}
@media (min-width: 1280px) {
  body > footer {
    padding: 3rem 0 5rem;
    margin-top: 344px;
  }
  body > footer .layout-inner {
    display: grid;
    grid-template-columns: 1fr repeat(12, 56px) 1fr;
    gap: 1.6rem 32px;
  }
}
body > footer .footer-decoration-wrapper {
  display: flex;
  position: absolute;
  top: -220px;
  width: 100%;
  left: 0;
}
body > footer .footer-decoration {
  height: 220px;
}
body > footer .footer-decoration.footer-decoration--fill {
  flex: 1 1 0;
  background-image: url("/assets/images/footer-fill.svg");
  background-repeat: repeat-x;
  background-size: auto 100%;
}
body > footer .footer-decoration.footer-decoration--fill:first-child {
  background-position: bottom 0 right 0;
}
body > footer .footer-decoration.footer-decoration--center {
  flex: 0 1 auto;
  width: 727px;
  background-image: url("/assets/images/footer-center.svg");
  background-size: auto 100%;
  background-position: bottom 0 right calc((727px - 100vw) * -0.15);
  background-repeat: no-repeat;
}
@media (min-width: 727px) {
  body > footer .footer-decoration.footer-decoration--center {
    background-position: initial;
  }
}
body > footer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  grid-column: 6/span 4;
}
body > footer ul.social-media {
  display: flex;
  margin-bottom: 1.5rem;
}
@media (min-width: 1280px) {
  body > footer ul.social-media {
    margin-bottom: 0;
  }
}
body > footer ul.social-media a {
  display: block;
}
body > footer ul.social-media a svg {
  display: block;
  width: 36px;
  height: 36px;
}
body > footer ul.social-media a svg .fill {
  fill: var(--white);
}
body > footer ul.social-media a:hover svg .fill {
  fill: var(--yellow);
}
body > footer li {
  display: flex;
}
body > footer li::before {
  content: "​";
  display: block;
}
body > footer li:not(:first-child) {
  margin-top: 0.25rem;
}
body > footer a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}
body > footer a:hover {
  color: var(--yellow);
}
body > footer .copyright {
  font-size: 0.6rem;
  margin-top: 32px;
  grid-column: 6/span 4;
}

/*# sourceMappingURL=index.css.map */
