:root {
  --ink: #19264a;
  --muted: #65708a;
  --blue: #1069e8;
  --paper: #f7f8ff;
  --line: #dfe5f3;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  max-width: 1210px;
  margin: auto;
  height: 92px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}
.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.7px;
}
.brand img,
.footer-brand img {
  width: 37px;
  height: 37px;
  border-radius: 10px;
  object-fit: cover;
}
.site-header nav {
  display: flex;
  gap: 31px;
  font-size: 14px;
  font-weight: 600;
  color: #4e5a77;
}
.site-header nav a:hover,
.footer-links a:hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-radius: 99px;
  background: var(--blue);
  color: #fff;
  padding: 16px 23px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 26px #1069e830;
  transition: 0.2s transform;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 18px;
  line-height: 0;
}
.button-small {
  padding: 12px 18px;
  font-size: 13px;
}
.hero {
  min-height: 650px;
  max-width: 1210px;
  padding: 78px 28px 60px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 1.55px;
  font-size: 11px;
  font-weight: 700;
  color: #66718a;
}
.eyebrow span {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: #ff8c5a;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 1px;
}
.hero h1,
.feature h2,
.intro h2,
.gallery h2,
.cta h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 55px;
  line-height: 1.09;
  letter-spacing: -3px;
  margin: 0;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-description {
  font-size: 18px;
  line-height: 1.62;
  color: var(--muted);
  max-width: 480px;
  margin: 24px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.text-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid #aab4c9;
  padding-bottom: 4px;
}
.text-link span {
  margin-left: 5px;
  color: var(--blue);
  font-size: 18px;
}
.micro-note {
  margin-top: 36px;
  color: #7b869e;
  font-size: 13px;
}
.spark {
  color: #ff8b62;
  margin-right: 7px;
}
.hero-visual {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shot {
  width: 244px;
  border-radius: 31px;
  box-shadow: 0 31px 54px #15245236;
  position: relative;
  z-index: 2;
  border: 6px solid #253052;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #a4cafb;
}
.ring-one {
  width: 470px;
  height: 470px;
}
.ring-two {
  width: 380px;
  height: 380px;
  border-style: dashed;
}
.orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.orb-yellow {
  background: #ffd93e;
  width: 63px;
  height: 63px;
  top: 58px;
  right: 73px;
}
.orb-pink {
  background: #fb91b8;
  width: 36px;
  height: 36px;
  bottom: 81px;
  left: 44px;
}
.orb-blue {
  background: #99e3f7;
  width: 26px;
  height: 26px;
  top: 105px;
  left: 73px;
}
.floating-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 15px;
  padding: 11px 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 14px 28px #263f6e20;
  font-size: 12px;
}
.floating-card b,
.floating-card small {
  display: block;
}
.floating-card small {
  color: #7f8aa2;
  margin-top: 2px;
  font-size: 10px;
}
.card-streak {
  top: 111px;
  left: 15px;
}
.card-score {
  right: 1px;
  bottom: 104px;
}
.card-icon,
.medal {
  height: 27px;
  width: 27px;
  border-radius: 9px;
  display: grid;
  place-items: center;
}
.card-icon {
  background: #fff2c8;
}
.medal {
  background: #e7ecff;
  color: var(--blue);
}
.trust-row {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: #65708a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
}
.trust-row i {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #ff8b62;
}
.section {
  max-width: 1154px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.intro {
  padding-top: 132px;
  padding-bottom: 63px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.intro h2,
.feature h2,
.gallery h2 {
  font-size: 43px;
}
.section-copy {
  max-width: 465px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
  margin: 37px 0 0;
}
.steps {
  padding-bottom: 130px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.steps article {
  background: #fff;
  border-radius: 21px;
  padding: 23px 25px 29px;
  min-height: 296px;
  position: relative;
}
.step-number {
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 13px;
  color: #98a2b8;
}
.step-art {
  height: 93px;
  width: 93px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 22px 0 19px;
  font-size: 45px;
  font-family: serif;
}
.lavender {
  background: #e3ddff;
  color: #7256e8;
}
.yellow {
  background: #fff0aa;
  color: #e2a600;
}
.coral {
  background: #ffd8cb;
  color: #f16347;
}
.steps h3 {
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -0.7px;
}
.steps p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.feature {
  max-width: 1210px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 109px 55px;
}
.feature-games {
  background: #edf1ff;
  border-radius: 35px;
}
.feature-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
  max-width: 455px;
  margin: 22px 0;
}
.feature-copy ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
  color: #58647e;
  font-size: 14px;
  line-height: 2;
}
.feature-copy li b {
  color: var(--ink);
}
.feature-image {
  position: relative;
  min-height: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blob {
  position: absolute;
  width: 300px;
  height: 335px;
  border-radius: 48% 52% 44% 56%/53% 43% 57% 47%;
  transform: rotate(-12deg);
}
.blob-mint {
  background: #aef3db;
}
.image-stack img,
.progress-visual img {
  position: absolute;
  border-radius: 23px;
  box-shadow: 0 21px 37px #32417029;
  border: 5px solid #263154;
}
.screen-back {
  height: 330px;
  transform: translate(-77px, -13px) rotate(-9deg);
}
.screen-front {
  height: 374px;
  transform: translate(66px, 20px) rotate(7deg);
  z-index: 1;
}
.doodle {
  z-index: 2;
  position: absolute;
  right: 7px;
  top: 23px;
  color: #ff7c5e;
  font-size: 43px;
}
.feature-progress {
  padding-top: 144px;
  padding-bottom: 144px;
}
.progress-visual img {
  height: 390px;
  z-index: 1;
}
.blob-peach {
  background: #ffcfbd;
  width: 303px;
  height: 340px;
  transform: rotate(14deg);
}
.progress-chip {
  z-index: 2;
  position: absolute;
  right: 6px;
  bottom: 13px;
  background: #fff;
  border-radius: 13px;
  padding: 13px 15px;
  box-shadow: 0 15px 29px #273f6721;
  font-size: 12px;
  font-weight: 700;
}
.progress-chip span {
  color: #ff8b62;
  margin-right: 5px;
}
.gallery {
  padding-top: 30px;
  padding-bottom: 132px;
}
.gallery-title {
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 47px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 23px;
  box-shadow: 0 16px 28px #263f6e18;
}
.cta {
  max-width: 1210px;
  margin: 0 auto 85px;
  border-radius: 35px;
  text-align: center;
  padding: 66px 25px 72px;
  background: #1c57d8;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta img {
  width: 64px;
  border-radius: 17px;
  position: relative;
  z-index: 1;
}
.cta .light {
  color: #cfdfff;
  margin-top: 23px;
}
.cta .light span {
  background: #ffe177;
}
.cta h2 {
  font-size: 45px;
  position: relative;
  z-index: 1;
}
.cta p:not(.eyebrow) {
  color: #d8e5ff;
  margin: 17px 0 27px;
  position: relative;
  z-index: 1;
}
.button-light {
  background: #fff;
  color: #1e4cb9;
  position: relative;
  z-index: 1;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.27;
}
.cta-orb.one {
  width: 340px;
  height: 340px;
  background: #8fb5ff;
  left: -137px;
  bottom: -183px;
}
.cta-orb.two {
  width: 240px;
  height: 240px;
  background: #a9e6d3;
  right: -72px;
  top: -107px;
}
footer {
  max-width: 1154px;
  padding: 0 28px 36px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 2fr;
  gap: 20px;
  align-items: center;
  color: #6f7a91;
  font-size: 13px;
}
footer p {
  margin: 0;
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
}
.footer-links a {
  white-space: nowrap;
}
footer small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: #98a1b4;
  font-size: 11px;
}
@media (max-width: 760px) {
  .site-header {
    height: 72px;
    padding: 0 19px;
  }
  .site-header nav {
    display: none;
  }
  .site-header .button {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 57px 25px 48px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 {
    font-size: 40px;
    letter-spacing: -2.3px;
  }
  .hero-description {
    font-size: 16px;
    margin: 19px auto;
  }
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 19px;
  }
  .micro-note {
    margin-top: 27px;
  }
  .hero-visual {
    min-height: 430px;
    margin-top: 22px;
  }
  .hero-shot {
    width: 205px;
  }
  .hero-ring.ring-one {
    width: 370px;
    height: 370px;
  }
  .hero-ring.ring-two {
    width: 300px;
    height: 300px;
  }
  .card-streak {
    left: 0;
    top: 78px;
  }
  .card-score {
    right: 0;
    bottom: 48px;
  }
  .trust-row {
    gap: 12px;
    min-height: 60px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 8px;
  }
  .intro {
    padding-top: 83px;
    padding-bottom: 42px;
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .intro h2,
  .feature h2,
  .gallery h2 {
    font-size: 34px;
    letter-spacing: -2px;
  }
  .section-copy {
    font-size: 16px;
    margin-top: 18px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-bottom: 76px;
  }
  .steps article {
    min-height: 0;
  }
  .step-art {
    height: 67px;
    width: 67px;
    font-size: 32px;
    margin: 17px 0;
  }
  .feature {
    grid-template-columns: 1fr;
    padding: 70px 25px;
    gap: 30px;
    border-radius: 0;
  }
  .feature-games {
    margin: 0;
  }
  .feature-image {
    min-height: 374px;
    order: 1;
  }
  .feature-copy {
    order: 2;
  }
  .feature-progress .feature-copy {
    order: 1;
  }
  .feature-progress .feature-image {
    order: 2;
  }
  .screen-back {
    height: 282px;
    transform: translate(-53px, -11px) rotate(-9deg);
  }
  .screen-front {
    height: 319px;
    transform: translate(48px, 15px) rotate(7deg);
  }
  .feature-progress {
    padding-top: 79px;
    padding-bottom: 78px;
  }
  .progress-visual img {
    height: 337px;
  }
  .gallery {
    padding-top: 65px;
    padding-bottom: 75px;
  }
  .gallery-grid {
    gap: 12px;
    margin-top: 28px;
  }
  .gallery-grid img {
    border-radius: 13px;
  }
  .cta {
    margin: 0 16px 56px;
    padding: 54px 18px 58px;
    border-radius: 25px;
  }
  .cta h2 {
    font-size: 36px;
  }
  .cta p:not(.eyebrow) {
    font-size: 15px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 0 25px 29px;
  }
  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  footer small {
    margin-top: 5px;
  }
  .brand {
    font-size: 16px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
}
