/* HOME PAGE: SECTION 1 – HERO */

/* HERO LAYOUT */
.ils-hero {
  padding-top: 4.5rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.16), transparent 55%),
    radial-gradient(circle at 15% 10%, rgba(168, 85, 247, 0.25), transparent 60%),
    linear-gradient(to bottom, #020617, #02081f 42%, #020617 100%);
}

.ils-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.ils-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ils-ice-cyan);
}

.ils-hero-title {
  margin: 0 0 1rem;
  font-size: 2.4rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.ils-hero-title-accent {
  background: linear-gradient(
    135deg,
    var(--ils-ice-cyan),
    var(--ils-violet),
    var(--ils-amber)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 25px rgba(103, 232, 249, 0.7);
}

.ils-hero-lead {
  margin: 0 0 0.75rem;
  font-size: 1.02rem;
  color: #e5f0ff;
}

.ils-hero-text-body {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ils-text-muted);
}

.ils-hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.ils-hero-meta {
  margin: 1.6rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.ils-hero-meta-item {
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: radial-gradient(
      circle at top left,
      var(--ils-ice-cyan-soft),
      transparent 70%
    ),
    rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.ils-hero-meta-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
}

.ils-hero-meta-value {
  margin: 0.15rem 0 0;
  font-size: 0.86rem;
  color: #e5f0ff;
}

/* HERO ORBIT MOSAIC */
.ils-hero-orbit {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0, #67e8f9 0, #020617 55%);
  box-shadow: var(--ils-shadow-soft);
  overflow: visible;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.ils-hero-orbit-core {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 10%, rgba(251, 191, 36, 0.35), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.48), transparent 75%),
    radial-gradient(circle at 30% 50%, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 1));
  filter: blur(0.4px);
}

.ils-hero-frame {
  position: absolute;
  width: 52%;
  max-width: 350px;
}

.ils-hero-frame--top {
  top: -4%;
  left: 50%;
  transform: translateX(-50%);
}

.ils-hero-frame--right {
  top: 26%;
  right: -6%;
}

.ils-hero-frame--left {
  top: 30%;
  left: -6%;
}

.ils-hero-frame--bottom {
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
}

.ils-hero-figure {
  position: relative;
  margin: 0;
  padding: 0.45rem;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 52, 0.98)
  );
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.95);
  transform-origin: center;
  transform: translateZ(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.ils-hero-img {
  border-radius: 18px;
  max-width: 350px;
}

.ils-hero-caption {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  color: var(--ils-text-muted);
}

/* HOVER STATES */
.ils-hero-figure:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 1);
  border-color: var(--ils-ice-cyan);
}

/* ORBIT PARALLAX ACTIVE CLASS */
.ils-hero-orbit.is-parallax-active {
  will-change: transform;
}

/* HERO RIBBON */
.ils-hero-ribbon {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  background: radial-gradient(
      circle at center,
      rgba(103, 232, 249, 0.18),
      transparent 70%
    ),
    rgba(2, 6, 23, 0.96);
}

.ils-hero-ribbon-text {
  margin: 0;
  padding: 0.8rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
}

/* RESPONSIVE HERO */
@media (max-width: 1024px) {
  .ils-hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
  }

  .ils-hero-title {
    font-size: 2.1rem;
  }

  .ils-hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ils-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem;
  }

  .ils-hero {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .ils-hero-orbit {
    max-width: 340px;
  }

  .ils-hero-frame--right {
    right: -3%;
  }

  .ils-hero-frame--left {
    left: -3%;
  }

  .ils-hero-meta {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .ils-hero-title {
    font-size: 1.75rem;
  }

  .ils-hero-inner {
    gap: 1.8rem;
  }

  /* вместо круга – обычная колонка картинок */
  .ils-hero-orbit {
    position: static;
    max-width: 100%;
    margin-inline: 0;
    aspect-ratio: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transform: none !important;
  }

  .ils-hero-orbit-core {
    display: none;
  }

  .ils-hero-frame {
    position: static;
    width: 100%;
    max-width: 350px;
    margin-inline: auto;
  }

  /* лишние позиционирования больше не нужны */
  .ils-hero-frame--right,
  .ils-hero-frame--left,
  .ils-hero-frame--bottom {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
  }

  .ils-hero-ribbon-text {
    font-size: 0.76rem;
    padding-inline: 1.05rem;
  }
}

/* ================================
   SECTION 2 – SIGNALS WE CHASE
   ================================ */

.ils-signals {
  background:
    radial-gradient(circle at bottom left, rgba(15, 118, 110, 0.28), transparent 60%),
    linear-gradient(to bottom, #020617, #02081f 40%, #020617 100%);
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
}

.ils-signals-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr);
  gap: 2.4rem;
  align-items: center;
  overflow: hidden;
}

/* декоративная решётка с линиями */
.ils-signals-inner::before {
  content: "";
  position: absolute;
  inset: 6% 10%;
  border-radius: 28px;
  border: 1px dashed rgba(148, 163, 184, 0.3);
  background-image: linear-gradient(
      to right,
      rgba(148, 163, 184, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(148, 163, 184, 0.08) 1px,
      transparent 1px
    );
  background-size: 40px 40px;
  opacity: 0.6;
  pointer-events: none;
}

.ils-signals-copy {
  position: relative;
  z-index: 1;
}

.ils-signals-title {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
  line-height: 1.2;
}

.ils-signals-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

.ils-signals-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.ils-signals-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: radial-gradient(
      circle at top left,
      var(--ils-ice-cyan-soft),
      transparent 70%
    ),
    rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.9);
}

.ils-signals-tag {
  align-self: center;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #020617;
  background: linear-gradient(135deg, var(--ils-ice-cyan), var(--ils-amber));
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.7);
}

.ils-signals-item-text {
  margin: 0;
  font-size: 0.85rem;
  color: #e5f0ff;
}

/* MOSAIC */
.ils-signals-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  align-content: center;
}

.ils-signals-figure {
  margin: 0;
  padding: 0.45rem;
  border-radius: 22px;
  background: radial-gradient(
      circle at top left,
      rgba(15, 23, 42, 0.8),
      rgba(15, 23, 52, 0.95)
    );
  border: 1px solid rgba(148, 163, 184, 0.65);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.95);
  transform-origin: center left;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ils-signals-figure:nth-child(2) {
  transform-origin: center right;
}

.ils-signals-figure:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--ils-ice-cyan);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 1);
}

.ils-signals-caption {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--ils-text-muted);
}

/* ================================
   SECTION 3 – EPISODE SPECTRUM
   ================================ */

.ils-spectrum {
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.22), transparent 60%),
    linear-gradient(to bottom, #020617, #020918 35%, #020617 100%);
  padding-top: 3.4rem;
  padding-bottom: 3.6rem;
}

.ils-spectrum-inner {
  display: grid;
  gap: 2.2rem;
}

.ils-spectrum-header {
  max-width: 40rem;
}

.ils-spectrum-title {
  margin: 0 0 0.7rem;
  font-size: 1.65rem;
}

.ils-spectrum-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

/* gradient band */
.ils-spectrum-band {
  position: relative;
  border-radius: 999px;
  padding: 0.2rem;
  background: linear-gradient(
    90deg,
    var(--ils-ice-cyan),
    var(--ils-violet),
    var(--ils-amber)
  );
  box-shadow: 0 0 30px rgba(103, 232, 249, 0.6);
  overflow: hidden;
}

.ils-spectrum-band::before {
  content: "";
  display: block;
  border-radius: inherit;
  background: rgba(15, 23, 42, 0.96);
  padding: 0.5rem;
}

.ils-spectrum-point {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.ils-spectrum-point--solo {
  left: 8%;
}

.ils-spectrum-point--duo {
  left: 48%;
}

.ils-spectrum-point--crew {
  right: 8%;
}

.ils-spectrum-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e5f0ff;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

/* image strip */
.ils-spectrum-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ils-spectrum-card {
  margin: 0;
  padding: 0.5rem;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.95);
  transform-origin: center;
  transform: translateY(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.ils-spectrum-card:hover {
  transform: translateY(-6px);
  border-color: var(--ils-amber);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 1);
}

.ils-spectrum-caption {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--ils-text-muted);
}

/* ================================
   SECTION 4 – RIG PHILOSOPHY STACK
   ================================ */

.ils-rigs-intro {
  background:
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.24), transparent 65%),
    linear-gradient(to bottom, #020617, #020918 30%, #020617 100%);
  padding-top: 3.6rem;
  padding-bottom: 3.8rem;
}

.ils-rigs-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: center;
}

.ils-rigs-copy {
  position: relative;
}

.ils-rigs-title {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.ils-rigs-text {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

.ils-rigs-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.ils-rigs-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.ils-rigs-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--ils-amber), var(--ils-violet));
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.7);
  margin-top: 0.3rem;
}

.ils-rigs-point-text {
  margin: 0;
  font-size: 0.86rem;
  color: #e5f0ff;
}

/* stack cards */
.ils-rigs-stack {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
}

.ils-rigs-card {
  margin: 0;
  padding: 0.5rem;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 52, 0.98)
  );
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.98);
  transform-origin: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, opacity 0.25s ease;
}

.ils-rigs-card--primary {
  position: relative;
  z-index: 3;
}

.ils-rigs-card--secondary {
  position: absolute;
  inset-inline: 10%;
  top: 18%;
  z-index: 2;
  opacity: 0.9;
}

.ils-rigs-card--tertiary {
  position: absolute;
  inset-inline: 18%;
  top: 36%;
  z-index: 1;
  opacity: 0.8;
}

.ils-rigs-stack:hover .ils-rigs-card--secondary {
  transform: translateY(-6px);
}

.ils-rigs-stack:hover .ils-rigs-card--tertiary {
  transform: translateY(-4px);
}

.ils-rigs-card:hover {
  border-color: var(--ils-ice-cyan);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 1);
}

.ils-rigs-caption {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: var(--ils-text-muted);
}

/* ================================
   RESPONSIVE FOR SECTIONS 2–4
   ================================ */

@media (max-width: 1024px) {
  .ils-signals-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  }

  .ils-spectrum-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ils-rigs-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .ils-signals-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .ils-signals-inner::before {
    inset: 4% 4%;
  }

  .ils-spectrum-inner {
    gap: 1.8rem;
  }

  .ils-spectrum-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ils-rigs-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
  }

  .ils-rigs-stack {
    max-width: 320px;
  }

  .ils-rigs-card--secondary,
  .ils-rigs-card--tertiary {
    inset-inline: 12%;
  }
}

@media (max-width: 480px) {
  .ils-signals {
    padding-top: 3rem;
    padding-bottom: 3.2rem;
  }

  .ils-spectrum-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .ils-rigs-stack {
    max-width: 280px;
  }

  .ils-rigs-card--secondary {
    top: 20%;
    inset-inline: 14%;
  }

  .ils-rigs-card--tertiary {
    top: 40%;
    inset-inline: 18%;
  }
}
@media (max-width: 480px) {
  .ils-hero-title {
    font-size: 1.75rem;
  }

  .ils-hero-inner {
    gap: 1.8rem;
  }

  /* вместо круга – вертикальная колонка изображений */
  .ils-hero-orbit {
    position: static;
    max-width: 100%;
    margin-inline: 0;
    aspect-ratio: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transform: none !important;
  }

  .ils-hero-orbit-core {
    display: none;
  }

  .ils-hero-frame {
    position: static;
    inset: auto;          /* сброс top/right/bottom/left */
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    transform: none;      /* сброс translateX(-50%) и др. */
  }

  .ils-hero-frame--top,
  .ils-hero-frame--right,
  .ils-hero-frame--left,
  .ils-hero-frame--bottom {
    inset: auto;
    transform: none;
  }

  .ils-hero-ribbon-text {
    font-size: 0.76rem;
    padding-inline: 1.05rem;
  }
}
@media (max-width: 480px) {
  .ils-signals {
    padding-top: 3rem;
    padding-bottom: 3.2rem;
  }

  .ils-spectrum-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .ils-rigs-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
  }

  /* превращаем стек в нормальную колонку */
  .ils-rigs-stack {
    position: static;
    max-width: 100%;
    margin-inline: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .ils-rigs-card {
    position: static;
    inset: auto;
    top: auto;
    opacity: 1;
    transform: none;
    z-index: auto;
    margin-inline: auto;        /* выравниваем по центру */
    width: 100%;
    max-width: 350px;
  }

  .ils-rigs-card--primary,
  .ils-rigs-card--secondary,
  .ils-rigs-card--tertiary {
    position: static;
    inset: auto;
    top: auto;
    opacity: 1;
    z-index: auto;
  }
}
/* stack cards — теперь без absolute, ступенькой, но без наложения */
.ils-rigs-stack {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ils-rigs-card {
  position: relative;
  margin: 0;
  padding: 0.5rem;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 52, 0.98)
  );
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.98);
  transform-origin: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* лёгкая ступенька по горизонтали на десктопе */
.ils-rigs-card--primary {
  margin-left: 0;
}

.ils-rigs-card--secondary {
  margin-left: 1.4rem;
}

.ils-rigs-card--tertiary {
  margin-left: 2.8rem;
}

.ils-rigs-card:hover {
  border-color: var(--ils-ice-cyan);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 1);
}

/* немного движения при hover на весь стек */
.ils-rigs-stack:hover .ils-rigs-card--secondary {
  transform: translateY(-4px);
}

.ils-rigs-stack:hover .ils-rigs-card--tertiary {
  transform: translateY(-6px);
}
@media (max-width: 480px) {
  .ils-signals {
    padding-top: 3rem;
    padding-bottom: 3.2rem;
  }

  .ils-spectrum-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .ils-rigs-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
  }

  /* на мобилке — ровная колонка по центру */
  .ils-rigs-stack {
    position: static;
    max-width: 100%;
    margin-inline: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .ils-rigs-card {
    position: static;
    inset: auto;
    top: auto;
    opacity: 1;
    transform: none;
    z-index: auto;
    width: 100%;
    max-width: 350px;
    margin-inline: auto;
  }

  .ils-rigs-card--primary,
  .ils-rigs-card--secondary,
  .ils-rigs-card--tertiary {
    margin-left: 0; /* убираем ступеньку на мобилке */
  }
}
/* ================================
   SECTION 5 – FRAME LAB GRID
   ================================ */

.ils-frame-lab {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), transparent 60%),
    linear-gradient(to bottom, #020617, #02081f 35%, #020617 100%);
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}

.ils-frame-lab-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: center;
}

.ils-frame-lab-header {
  max-width: 26rem;
}

.ils-frame-lab-title {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.ils-frame-lab-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

/* bento-grid */
.ils-frame-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-auto-rows: 1fr;
  gap: 0.9rem;
}

.ils-frame-cell {
  margin: 0;
  padding: 0.45rem;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.96);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.ils-frame-cell--tall {
  grid-row: span 2;
}

.ils-frame-cell--wide-top,
.ils-frame-cell--wide-bottom {
  grid-column: 2;
}

.ils-frame-cell:hover {
  transform: translateY(-6px);
  border-color: var(--ils-ice-cyan);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 1);
}

.ils-frame-caption {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: var(--ils-text-muted);
}

/* ================================
   SECTION 6 – QUICK EPISODE RECIPES
   ================================ */

.ils-recipes {
  background:
    radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.22), transparent 62%),
    linear-gradient(to bottom, #020617, #020918 35%, #020617 100%);
  padding-top: 3.4rem;
  padding-bottom: 3.6rem;
}

.ils-recipes-inner {
  display: grid;
  gap: 2.2rem;
}

.ils-recipes-header {
  max-width: 38rem;
}

.ils-recipes-title {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.ils-recipes-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

.ils-recipes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.ils-recipe-card {
  padding: 1.1rem 1.1rem 1rem;
  border-radius: 26px;
  background: radial-gradient(
      circle at top left,
      rgba(103, 232, 249, 0.18),
      transparent 65%
    ),
    rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.98);
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 0.7rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.ils-recipe-card:hover {
  transform: translateY(-5px);
  border-color: var(--ils-ice-cyan);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 1);
}

.ils-recipe-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.ils-recipe-tag {
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #020617;
  background: linear-gradient(
    130deg,
    var(--ils-ice-cyan),
    var(--ils-violet)
  );
  box-shadow: 0 0 20px rgba(103, 232, 249, 0.7);
}

.ils-recipe-tag--bright {
  background: linear-gradient(
    130deg,
    var(--ils-amber),
    var(--ils-ice-cyan)
  );
}

.ils-recipe-title {
  margin: 0;
  font-size: 1.05rem;
}

.ils-recipe-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ils-text-muted);
}

.ils-recipe-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: #e5f0ff;
}

.ils-recipe-list li {
  margin-bottom: 0.25rem;
}

.ils-recipe-figure {
  margin: 0;
  padding: 0.4rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

/* ================================
   SECTION 7 – ICE LOGBOOK PREVIEW
   ================================ */

.ils-logbook-teaser {
  background:
    radial-gradient(circle at top, rgba(59, 130, 246, 0.22), transparent 60%),
    linear-gradient(to bottom, #020617, #020918 30%, #020617 100%);
  padding-top: 3.4rem;
  padding-bottom: 3.6rem;
}

.ils-logbook-inner {
  display: grid;
  gap: 2rem;
}

.ils-logbook-header {
  max-width: 40rem;
}

.ils-logbook-title {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.ils-logbook-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

/* horizontal strip with internal scroll */
.ils-logbook-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
}

.ils-logbook-strip::-webkit-scrollbar {
  height: 4px;
}

.ils-logbook-strip::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.9);
}

.ils-logbook-strip::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.7);
  border-radius: 999px;
}

.ils-logbook-card {
  min-width: 240px;
  max-width: 280px;
  flex: 0 0 auto;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.98);
  scroll-snap-align: start;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.ils-logbook-card:hover {
  transform: translateY(-5px);
  border-color: var(--ils-ice-cyan);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 1);
}

.ils-logbook-figure {
  margin: 0;
}

.ils-logbook-body {
  padding: 0.6rem 0.85rem 0.75rem;
}

.ils-logbook-episode {
  margin: 0 0 0.25rem;
  font-size: 0.96rem;
}

.ils-logbook-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ils-text-muted);
}

/* ========= RESPONSIVE 5–7 ========= */

@media (max-width: 1024px) {
  .ils-frame-lab-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }

  .ils-frame-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .ils-recipes-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .ils-frame-lab-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.9rem;
  }

  .ils-frame-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ils-frame-cell--tall {
    grid-row: auto;
  }

  .ils-recipes-inner {
    gap: 1.8rem;
  }

  .ils-logbook-strip {
    padding-inline: 0.2rem;
  }
}

@media (max-width: 480px) {
  .ils-frame-lab {
    padding-top: 3.1rem;
    padding-bottom: 3.1rem;
  }

  .ils-recipes {
    padding-top: 3rem;
    padding-bottom: 3.2rem;
  }

  .ils-logbook-teaser {
    padding-top: 3rem;
    padding-bottom: 3.2rem;
  }

  .ils-logbook-card {
    min-width: 220px;
    max-width: 260px;
  }
}
@media (max-width: 768px) {
  .ils-frame-lab-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.9rem;
  }

  /* вместо грида – простая колонка карточек */
  .ils-frame-grid {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .ils-frame-cell {
    width: 100%;
  }

  .ils-frame-cell--tall,
  .ils-frame-cell--wide-top,
  .ils-frame-cell--wide-bottom {
    grid-row: auto;
    grid-column: auto;
  }

  .ils-recipes-inner {
    gap: 1.8rem;
  }

  .ils-logbook-strip {
    padding-inline: 0.2rem;
  }
}
/* ================================
   SECTION 8 – UNDER-ICE SOUNDSCAPE
   ================================ */

.ils-soundscape {
  background:
    radial-gradient(circle at top, rgba(94, 234, 212, 0.22), transparent 60%),
    linear-gradient(to bottom, #020617, #020918 35%, #020617 100%);
  padding-top: 3.4rem;
  padding-bottom: 3.6rem;
}

.ils-soundscape-inner {
  display: grid;
  gap: 2rem;
}

.ils-soundscape-header {
  max-width: 40rem;
}

.ils-soundscape-title {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.ils-soundscape-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

.ils-sound-rail {
  position: relative;
  padding-left: 1.7rem;
  border-left: 1px dashed rgba(148, 163, 184, 0.6);
  display: grid;
  gap: 1.4rem;
}

.ils-sound-event {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding: 0.8rem 0.85rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.96);
  overflow: hidden;
}

.ils-sound-event::before {
  content: "";
  position: absolute;
  left: -1.7rem;
  top: 1.2rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--ils-amber), var(--ils-ice-cyan));
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.7);
}

.ils-sound-time {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 0.2rem;
}

.ils-sound-title {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.ils-sound-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ils-text-muted);
}

.ils-sound-figure {
  margin: 0;
  padding: 0.35rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

/* ================================
   SECTION 9 – COLOR GRADING BOARD
   ================================ */

.ils-grading {
  background:
    radial-gradient(circle at bottom right, rgba(96, 165, 250, 0.22), transparent 60%),
    linear-gradient(to bottom, #020617, #020918 30%, #020617 100%);
  padding-top: 3.4rem;
  padding-bottom: 3.6rem;
}

.ils-grading-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.8rem 2rem;
  align-items: flex-start;
}

.ils-grading-copy {
  max-width: 24rem;
}

.ils-grading-title {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.ils-grading-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

.ils-grading-main {
  margin: 0;
  padding: 0.5rem;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.98);
}

.ils-grading-caption {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: var(--ils-text-muted);
}

/* row of comparison cards */
.ils-grading-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ils-grading-card {
  margin: 0;
  padding: 0.45rem;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.96);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.ils-grading-card:hover {
  transform: translateY(-5px);
  border-color: var(--ils-ice-cyan);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 1);
}

.ils-grading-card-caption {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--ils-text-muted);
}

/* ================================
   SECTION 10 – CREATOR ROLES
   ================================ */

.ils-crew {
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.2), transparent 60%),
    linear-gradient(to bottom, #020617, #020918 30%, #020617 100%);
  padding-top: 3.4rem;
  padding-bottom: 3.6rem;
}

.ils-crew-inner {
  display: grid;
  gap: 2rem;
}

.ils-crew-header {
  max-width: 40rem;
}

.ils-crew-title {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.ils-crew-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

.ils-crew-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.ils-crew-card {
  padding: 1rem 0.9rem 0.95rem;
  border-radius: 24px;
  background: radial-gradient(
      circle at top,
      rgba(103, 232, 249, 0.12),
      transparent 70%
    ),
    rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.98);
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.ils-crew-card:hover {
  transform: translateY(-5px);
  border-color: var(--ils-ice-cyan);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 1);
}

.ils-crew-avatar {
  margin: 0 0 0.6rem;
  border-radius: 16px;
  overflow: hidden;
}

.ils-crew-role {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
}

.ils-crew-role-text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ils-text-muted);
}

/* ========= RESPONSIVE 8–10 ========= */

@media (max-width: 1024px) {
  .ils-sound-event {
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.1fr);
  }

  .ils-grading-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .ils-crew-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ils-sound-event {
    grid-template-columns: minmax(0, 1fr);
  }

  .ils-grading-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .ils-grading-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ils-crew-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .ils-sound-rail {
    padding-left: 1.2rem;
  }

  .ils-sound-event::before {
    left: -1.2rem;
  }

  .ils-grading-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .ils-crew-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ================================
   SECTION 11 – MICRO MOVES LAB
   ================================ */

.ils-micro {
  background:
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.22), transparent 60%),
    linear-gradient(to bottom, #020617, #020918 30%, #020617 100%);
  padding-top: 3.4rem;
  padding-bottom: 3.6rem;
}

.ils-micro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: center;
}

.ils-micro-title {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.ils-micro-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

.ils-micro-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.ils-micro-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.ils-micro-pill {
  align-self: center;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #020617;
  background: linear-gradient(135deg, var(--ils-ice-cyan), var(--ils-amber));
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.7);
}

.ils-micro-item-text {
  margin: 0;
  font-size: 0.86rem;
  color: #e5f0ff;
}

/* stack of two figures */
.ils-micro-stack {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
}

.ils-micro-figure {
  margin: 0;
  padding: 0.45rem;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.98);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.ils-micro-figure--top {
  position: relative;
  z-index: 2;
}

.ils-micro-figure--bottom {
  position: relative;
  margin-top: -1.4rem;
  margin-left: 1.8rem;
  z-index: 1;
}

.ils-micro-figure:hover {
  transform: translateY(-5px);
  border-color: var(--ils-ice-cyan);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 1);
}

.ils-micro-caption {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--ils-text-muted);
}

/* ================================
   SECTION 12 – PACKING DISCIPLINE
   ================================ */

.ils-pack {
  background:
    radial-gradient(circle at top left, rgba(94, 234, 212, 0.2), transparent 60%),
    linear-gradient(to bottom, #020617, #020918 30%, #020617 100%);
  padding-top: 3.4rem;
  padding-bottom: 3.6rem;
}

.ils-pack-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

.ils-pack-title {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.ils-pack-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

.ils-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.ils-pack-cell {
  padding: 0.75rem 0.8rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.ils-pack-label {
  margin: 0 0 0.3rem;
  font-size: 0.96rem;
}

.ils-pack-cell-text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ils-text-muted);
}

/* image mosaic on the side */
.ils-pack-mosaic {
  display: grid;
  gap: 0.9rem;
}

.ils-pack-figure {
  margin: 0;
  padding: 0.45rem;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.98);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.ils-pack-figure:hover {
  transform: translateY(-4px);
  border-color: var(--ils-ice-cyan);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 1);
}

.ils-pack-caption {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--ils-text-muted);
}

/* ================================
   SECTION 13 – BRIDGE CTA
   ================================ */

.ils-next {
  background:
    radial-gradient(circle at bottom, rgba(251, 191, 36, 0.22), transparent 60%),
    linear-gradient(to bottom, #020617, #020918 30%, #020617 100%);
  padding-top: 3.4rem;
  padding-bottom: 3.8rem;
}

.ils-next-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.1rem;
  align-items: center;
}

.ils-next-title {
  margin: 0 0 0.7rem;
  font-size: 1.8rem;
}

.ils-next-text {
  margin: 0 0 1.3rem;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

.ils-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.ils-next-figure {
  margin: 0;
  padding: 0.5rem;
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.98);
}

.ils-next-caption {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: var(--ils-text-muted);
}

/* ========= RESPONSIVE 11–13 ========= */

@media (max-width: 1024px) {
  .ils-micro-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .ils-pack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ils-next-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .ils-micro-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .ils-micro-stack {
    max-width: 320px;
  }

  .ils-micro-figure--bottom {
    margin-top: 0.7rem;
    margin-left: 0;
  }

  .ils-pack-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .ils-pack-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ils-next-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .ils-next-figure {
    max-width: 340px;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .ils-micro {
    padding-top: 3.1rem;
    padding-bottom: 3.2rem;
  }

  .ils-pack {
    padding-top: 3.1rem;
    padding-bottom: 3.2rem;
  }

  .ils-next {
    padding-top: 3.1rem;
    padding-bottom: 3.4rem;
  }

  .ils-micro-stack {
    max-width: 280px;
  }
}
/* ================================
   SECTION 14 – EXPORT CHECKLIST
   ================================ */

.ils-checklist {
  background:
    radial-gradient(circle at top, rgba(148, 163, 184, 0.18), transparent 60%),
    linear-gradient(to bottom, #020617, #020918 30%, #020617 100%);
  padding-top: 3.4rem;
  padding-bottom: 3.6rem;
}

.ils-checklist-inner {
  display: grid;
  gap: 2.1rem;
}

.ils-checklist-header {
  max-width: 40rem;
}

.ils-checklist-title {
  margin: 0 0 0.7rem;
  font-size: 1.7rem;
}

.ils-checklist-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

.ils-checklist-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ils-checkstep {
  padding: 0.9rem 0.85rem 0.95rem;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.98);
  display: grid;
  gap: 0.4rem;
}

.ils-checkstep-chip {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e5f0ff;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: radial-gradient(
      circle at 30% 30%,
      rgba(103, 232, 249, 0.25),
      transparent 60%
    ),
    rgba(15, 23, 42, 0.96);
}

.ils-checkstep-title {
  margin: 0;
  font-size: 0.98rem;
}

.ils-checkstep-text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ils-text-muted);
}

/* ================================
   SECTION 15 – CLOSING SCENE
   ================================ */

.ils-finale {
  background:
    radial-gradient(circle at bottom, rgba(56, 189, 248, 0.22), transparent 60%),
    linear-gradient(to bottom, #020617, #020918 30%, #020617 100%);
  padding-top: 3.4rem;
  padding-bottom: 3.9rem;
}

.ils-finale-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.05fr);
  gap: 2.4rem;
  align-items: center;
}

.ils-finale-title {
  margin: 0 0 0.7rem;
  font-size: 1.9rem;
}

.ils-finale-text {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  color: var(--ils-text-muted);
}

.ils-finale-text:last-of-type {
  margin-bottom: 1.4rem;
}

.ils-finale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.ils-finale-figure {
  margin: 0;
  padding: 0.5rem;
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.98);
}

.ils-finale-caption {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: var(--ils-text-muted);
}

/* ========= RESPONSIVE 14–15 ========= */

@media (max-width: 1024px) {
  .ils-checklist-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ils-finale-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .ils-checklist-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .ils-finale-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .ils-finale-figure {
    max-width: 340px;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .ils-checklist {
    padding-top: 3.1rem;
    padding-bottom: 3.2rem;
  }

  .ils-finale {
    padding-top: 3.1rem;
    padding-bottom: 3.5rem;
  }

  .ils-checkstep {
    padding-inline: 0.8rem;
  }
}
/* ================================
   HERO ORBIT – IMAGE SIZING FIX
   ================================ */

/* Карточка кадра: ничего не вылезает за скругление */
.ils-hero-figure {
  position: relative;
  overflow: hidden;
  max-width: 350px;                /* ограничение ширины карточки */
  border-radius: 32px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.98);
}

/* Само изображение внутри героя */
.ils-hero-img {
  display: block;
  width: 100%;
  max-width: 350px;                /* не шире 350px, как мы решили для всего сайта */
  height: auto;
  object-fit: cover;               /* аккуратное кадрирование внутри карточки */
}

/* Дополнительно можно чуть ограничить сами фреймы */
.ils-hero-frame {
  max-width: 350px;
}
/* HERO ORBIT – hover: кадр выходит на передний план */

.ils-hero-frame {
  position: absolute;        /* уже есть, но продублировать не страшно */
  z-index: 1;
}

/* анимируем только figure, чтобы не ломать позиционирование фрейма */
.ils-hero-figure {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

/* при наведении – увеличенный z-index + лёгкий подъём/скейл */
.ils-hero-frame:hover {
  z-index: 10;
}

.ils-hero-frame:hover .ils-hero-figure {
  transform: translate3d(0, -6px, 0) scale(1.03);
  border-color: var(--ils-ice-cyan);
  box-shadow: 0 26px 64px rgba(15, 23, 42, 1);
}
/* =========================================
   HERO – MOBILE LAYOUT
   ========================================= */

@media (max-width: 768px) {
  /* текст + мозаика в одну колонку */
  .ils-hero {
    padding-top: 4.4rem;
    padding-bottom: 3rem;
  }

  .ils-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
    align-items: flex-start;
  }

  /* сам блок с карточками под текстом, по центру */
  .ils-hero-orbit {
    position: relative;
    margin: 0 auto;
    max-width: 340px;
    height: auto;
    padding-top: 0;
  }

  /* вместо орбиты — вертикальная колонка карточек */
  .ils-hero-frame {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: 340px;
    margin-inline: auto;
    margin-bottom: 1rem;
  }

  .ils-hero-frame:last-child {
    margin-bottom: 0;
  }

  .ils-hero-figure {
    max-width: 340px;   /* держим лимит по ширине */
  }
}

@media (max-width: 480px) {
  .ils-hero-orbit {
    max-width: 320px;
  }

  .ils-hero-frame,
  .ils-hero-figure {
    max-width: 320px;
  }
}
