*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  background: fs#e7ecf4;
  font-optical-sizing: auto;

  min-height: 100vh;

  font-family: "Inter Display", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  color: #fff;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}
h1, p, main, section {
  margin-top: 0;
}
h1, h2 {
  text-align: center;
  font-weight: 600;
}
h1 {
  font-size: 2rem;
  line-height: 2.5rem;
}
h2 {
  font-size: 1.4375rem;
  line-height: 1.75rem;
}
.wrapper {
  margin: 0 auto;
  width: 100%;
  background-color: #EFEFF4;
  min-height: calc(var(--vh, 1vh) * 100);
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .wrapper {
    max-width: 414px;
  }
}
img.animated {
  width: 64px;
  height: 64px;
}
header {
  padding: 1rem;
  padding-bottom: .65rem;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.15);
}
section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.step {
  margin: 1rem 1.25rem;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 1.25rem;
}
section.step:last-child {
  margin-bottom: 0px;
}
section.start {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding: 0rem 1.25rem;
}

section.start h1 {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}
section.step h2 {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.step-chip {
  font-size: 0.9375rem;
  line-height: 0.875rem;
  color: #007AFF;
  background-color: #4378FF1A;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.note {
  color: #707579;
  font-size: 0.9375rem;
  font-weight: 400;
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0px;
}
.footnote {
  font-size: 1.375rem;
  font-weight: 400;
  margin: 1rem 1.5rem 0px;
  text-align: center;
  letter-spacing: 0px;
}
.headnote {
  font-size: 1rem;
  color: white;
  background-color: #db9107;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 600;
  margin: 1rem 1.5rem;
  text-align: center;
}

.button {
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #007AFF;
  color: #FFFFFF;
  animation-delay: 600ms;
  animation-timing-function: ease-out;
  animation-duration: 1500ms;
  display: flex;
  align-items: center;
  gap: 10px;
}
.copy-text {
  width: 100%;
  margin-bottom: 0.875rem;
  background-color: #F5F5F5;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  line-height: 1rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1rem;
  cursor: pointer;
}
@keyframes shine {
  0% { left: -100px; }
  20% { left: 100%; }
  100% { left: 100%; }
}
.button::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100%;
  background: linear-gradient(125deg, #007AFF00 38.8%, #76C9FF80 61.7%, #007AFF00 81.71%);
  top: 0;
  left: -100px;
  width: 100%;
  height: 100%;
  animation: shine 3s infinite linear;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #000509;
  }
  .wrapper {
    background-color: #131416;
  }
  header {
    border-color: #ffffff1a;
  }
  section.step {
    background-color: #18222C
  }
  h1,h2 {
    color: #FFFFFF;
  }
  .button {
    background-color: #2990FF;
  }
  .copy-text {
    background-color: #131416;
    color: #FFFFFF;
  }
  svg.logo path {
    fill: #EFEFEF
  }
  .footnote {
    color: #ffffff;
  }
}
@font-face {
  font-family: 'Inter Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/InterDisplay-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/InterDisplay-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/InterDisplay-SemiBold.woff2') format('woff2');
}
