.release-page {
  overflow: hidden;
}

.release-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(760px, calc(100svh - 68px));
  align-content: center;
  justify-items: center;
  gap: 20px;
  padding: clamp(88px, 14vh, 160px) 20px;
  text-align: center;
}

.release-label,
.feature-number {
  margin: 0;
  color: #35d99b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.release-hero .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.release-feature-list {
  width: min(calc(100% - 40px), 1000px);
  margin: 0;
  padding-left: 1.25em;
  color: #f6f8fa;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-align: left;
}

.release-feature-list li + li {
  margin-top: 0.18em;
}

.release-feature-list li::marker {
  color: #35d99b;
  font-size: 0.72em;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.release-jump,
.release-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.release-jump {
  border: 1px solid rgba(91, 255, 181, 0.42);
  color: #dffbef;
  background: rgba(53, 217, 155, 0.1);
}

.release-jump:hover,
.release-jump:focus-visible {
  border-color: rgba(105, 255, 194, 0.72);
  background: rgba(53, 217, 155, 0.16);
  transform: translateY(-2px);
}

.release-download {
  border: 1px solid rgba(91, 255, 181, 0.5);
  color: #03110c;
  background: #35d99b;
  box-shadow: 0 10px 28px rgba(53, 217, 155, 0.16);
}

.release-download:hover,
.release-download:focus-visible {
  border-color: #8affca;
  color: #020a07;
  background: #6ef0b9;
  transform: translateY(-2px);
}

.release-feature {
  position: relative;
  display: grid;
  justify-items: center;
  gap: clamp(30px, 5vh, 54px);
  min-height: 100svh;
  align-content: center;
  padding: clamp(90px, 13vh, 150px) 0 clamp(96px, 14vh, 164px);
  scroll-margin-top: 68px;
}

.release-feature::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 40px), 1180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  content: "";
  transform: translateX(-50%);
}

.feature-copy {
  display: grid;
  justify-items: center;
  gap: 13px;
  width: min(calc(100% - 32px), 780px);
  text-align: center;
}

.feature-copy h2 {
  margin: 0;
  color: #f3f6f8;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-wrap: balance;
}

.feature-copy > p:last-child {
  max-width: 640px;
  margin: 4px 0 0;
  color: #aeb8c3;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.release-shot {
  position: relative;
  isolation: isolate;
  width: min(68.1%, 900px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(91, 255, 181, 0.34);
  border-radius: 20px;
  background: #070a0c;
  box-shadow:
    0 0 0 1px rgba(63, 211, 144, 0.07),
    0 0 34px rgba(48, 220, 143, 0.13),
    0 32px 90px rgba(0, 0, 0, 0.48);
}

.release-shot::before {
  position: absolute;
  z-index: -1;
  top: 14%;
  right: 10%;
  bottom: 8%;
  left: 10%;
  border-radius: 50%;
  background: rgba(20, 137, 101, 0.24);
  filter: blur(70px);
  content: "";
}

.release-shot img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.feature-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(calc(100% - 32px), 900px);
}

.feature-note {
  display: grid;
  align-content: start;
  gap: 6px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(53, 217, 155, 0.18);
  border-radius: 12px;
  color: #9eabb5;
  background: #07100e;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}

.feature-note strong {
  color: #87f2c8;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media screen and (max-width: 700px) {
  .release-shot {
    width: min(calc(100% - 32px), 820px);
    border-radius: 12px;
  }
}

@media (max-width: 620px) {
  .release-hero {
    min-height: calc(100svh - 60px);
    gap: 16px;
    padding: 70px 16px 82px;
  }

  .release-feature-list {
    width: min(calc(100% - 20px), 560px);
    padding-left: 1.2em;
    font-size: clamp(1.9rem, 8.5vw, 2.75rem);
    line-height: 1.08;
  }

  .release-feature {
    min-height: auto;
    gap: 28px;
    padding: 72px 0 82px;
    scroll-margin-top: 60px;
  }

  .feature-copy {
    width: min(calc(100% - 28px), 780px);
    gap: 11px;
  }

  .feature-copy h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1;
  }

  .feature-copy > p:last-child {
    font-size: 0.98rem;
  }

  .release-shot {
    border-radius: 12px;
    box-shadow:
      0 0 0 1px rgba(63, 211, 144, 0.05),
      0 0 22px rgba(48, 220, 143, 0.1),
      0 18px 48px rgba(0, 0, 0, 0.42);
  }

  .feature-notes {
    grid-template-columns: 1fr;
    width: min(calc(100% - 24px), 820px);
    gap: 12px;
  }

  .feature-note {
    padding: 16px 18px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 480px) {
  .release-shot {
    width: min(calc(100% - 24px), 820px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .release-hero > * {
    animation: release-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .release-hero > :nth-child(2) {
    animation-delay: 70ms;
  }

  .release-hero > :nth-child(3) {
    animation-delay: 140ms;
  }

  .release-hero > :nth-child(4) {
    animation-delay: 210ms;
  }
}

@keyframes release-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
