.home-page {
  color: #f7fbff;
  font-family: 'Rajdhani', system-ui, sans-serif;
  min-height: 100vh;
  padding: 62px 0 110px;
}

.home-hero {
  min-height: calc(100vh - 62px);
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5rem, 12vh, 8rem) clamp(1rem, 5vw, 5rem);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 8, 12, 0.92) 0%, rgba(3, 8, 12, 0.64) 48%, rgba(3, 8, 12, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 8, 12, 0.92) 0%, rgba(3, 8, 12, 0) 40%);
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-hero__media img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.home-hero__content {
  width: min(720px, 100%);
}

.home-kicker {
  color: #8be4d8;
  font-family: 'Rajdhani', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.home-hero h1 {
  font-family: "Audiowide", system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 6.75rem);
  font-weight: 400;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.home-hero p {
  max-width: 620px;
  color: #e3edf2;
  font-size: 1.2rem;
  line-height: 1.55;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.home-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #9ee6dc;
  border-radius: 6px;
  background: #9ee6dc;
  color: #071014;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.home-button--ghost {
  background: rgba(7, 16, 20, 0.54);
  color: #f7fbff;
}

.home-section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) 0;
}

.home-section__header {
  max-width: 720px;
  margin-bottom: 1.4rem;
}

.home-section h2 {
  font-family: "Audiowide", system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
}

.article-slider {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(2, 8, 12, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.article-slider__viewport {
  position: relative;
  min-height: 430px;
}

.article-slide {
  display: none;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr);
  min-height: 430px;
}

.article-slide.is-active {
  display: grid;
}

.article-slide__image {
  display: block;
  background: #111a1e;
}

.article-slide__image img {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.article-slide__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  padding: clamp(1.4rem, 5vw, 3rem);
}

.article-slide__meta {
  color: #f3c969;
  font-size: 0.95rem;
  font-weight: 700;
}

.article-slide h3 {
  font-family: "Audiowide", system-ui, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
}

.article-slide p {
  color: #d7e1e7;
  font-size: 1.05rem;
  line-height: 1.55;
}

.article-slide__link {
  color: #8be4d8;
  font-weight: 700;
  text-decoration: none;
}

.article-slide__link:hover,
.article-slide__link:focus {
  text-decoration: underline;
}

.article-slider__controls {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.article-slider__button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #f7fbff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.article-slider__button:hover,
.article-slider__button:focus {
  background: rgba(139, 228, 216, 0.16);
}

.article-slider__status {
  color: #cbd7dc;
  font-weight: 700;
  text-align: center;
}

.home-empty {
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(2, 8, 12, 0.66);
  padding: 2rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
}

.mission-copy {
  color: #e4edf1;
  font-size: 1.12rem;
  line-height: 1.7;
}

.mission-copy p + p {
  margin-top: 1rem;
}

.home-links {
  display: grid;
  gap: 0.75rem;
}

.home-links a {
  display: grid;
  gap: 0.2rem;
  border-left: 4px solid #8be4d8;
  border-radius: 6px;
  background: rgba(2, 8, 12, 0.72);
  color: #f7fbff;
  padding: 1rem;
  text-decoration: none;
}

.home-links a:nth-child(2) {
  border-left-color: #f3c969;
}

.home-links a:nth-child(3) {
  border-left-color: #a8d76f;
}

.home-links span {
  font-family: "Audiowide", system-ui, sans-serif;
}

.home-links small {
  color: #cbd7dc;
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .home-page {
    padding-top: 62px;
  }

  .home-hero {
    min-height: 620px;
  }

  .article-slide,
  .article-slide.is-active,
  .mission-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .article-slider__viewport,
  .article-slide {
    min-height: 0;
  }

  .article-slide__image img {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .home-hero {
    padding: 4rem 1rem 3rem;
  }

  .home-hero__actions,
  .home-button {
    width: 100%;
  }
}
