.hero {
  padding-top: clamp(64px, 8vh, 104px);
}

.hero h1 {
  max-width: 1040px;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.summary {
  max-width: 680px;
  margin: 28px 0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.52;
}

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

.hero {
  order: 1;
}

.snapshots-section {
  order: 2;
}

.videos-section {
  order: 3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 720px) {
  .hero {
    padding: 44px 24px 30px;
  }

  .kicker {
    margin-bottom: 16px;
    font-size: 10px;
    line-height: 1.45;
  }

  .hero h1 {
    font-size: clamp(29px, 8.1vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .summary {
    margin: 20px 0 16px;
    font-size: 14.5px;
    line-height: 1.48;
  }

  .identity {
    gap: 6px;
    padding-top: 26px;
  }
}

.snapshots-section {
  padding: 104px clamp(24px, 8vw, 124px) 112px;
  overflow: hidden;
  color: #f7f5ef;
  background: #101a2d;
}

.snapshots-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.snapshots-heading > div > p {
  margin: 0 0 16px;
  color: #75a9ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.snapshots-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.snapshots-intro {
  margin: 0;
  color: #aeb9cc;
  font-size: 16px;
  line-height: 1.55;
}

.snapshot-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.snapshot-track::-webkit-scrollbar {
  display: none;
}

.snapshot-card {
  scroll-snap-align: start;
  scroll-margin-inline: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: #0a101d;
}

.snapshot-visual {
  height: clamp(360px, 55vw, 690px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 64px);
  background: #ffffff;
}

.snapshot-visual.light {
  background: #ffffff;
}

.snapshot-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.snapshot-caption {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 28px 32px 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.snapshot-caption > span {
  color: #75a9ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.snapshot-caption h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.snapshot-caption p {
  max-width: 720px;
  margin: 0;
  color: #aeb9cc;
  font-size: 15px;
  line-height: 1.55;
}

.snapshot-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.snapshot-nav a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  color: #f7f5ef;
  text-decoration: none;
  font-size: 11px;
}

.snapshot-nav a:hover,
.snapshot-nav a:focus-visible {
  border-color: #75a9ff;
  background: #17458f;
}

.snapshot-nav span {
  margin-left: auto;
  color: #7f8da5;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .snapshots-section {
    padding: 74px 20px 82px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .snapshots-heading {
    display: block;
    margin-bottom: 28px;
  }

  .snapshots-heading h2 {
    font-size: 36px;
  }

  .snapshots-intro {
    margin-top: 16px;
    font-size: 14px;
  }

  .snapshot-track {
    grid-auto-columns: 94%;
    gap: 14px;
  }

  .snapshot-card {
    border-radius: 16px;
  }

  .snapshot-visual {
    height: 390px;
    padding: 18px;
  }

  .snapshot-visual.wide {
    height: 300px;
  }

  .snapshot-caption {
    display: block;
    min-height: 190px;
    padding: 22px;
  }

  .snapshot-caption > span {
    display: block;
    margin-bottom: 13px;
  }

  .snapshot-caption h3 {
    font-size: 24px;
  }

  .snapshot-caption p {
    font-size: 14px;
  }
}
