.int-page {
  background: #fff;
}

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

#catalog {
  scroll-margin-top: 110px;
}

.screen.int-chrome {
  min-height: 0;
  height: 0;
  min-width: 0;
  width: 100%;
  overflow: visible;
  background: transparent;
  aspect-ratio: auto;
}

.screen.int-chrome > header.site-header .site-header__menu-btn {
  display: none;
}

.int-main {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.int-canvas {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 1920px;
  background: #fff;
}

.int-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 30px 30px;
  padding: 180px 48px 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.int-hero__dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.28;
  pointer-events: none;
}

.int-hero__cluster {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 28px;
}

.int-hero__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #ebe7f4;
  box-shadow: 0 10px 28px rgba(67, 50, 138, 0.1);
}

.int-hero__chip img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.int-hero__chip:nth-child(1) { transform: translateY(8px) rotate(-8deg); }
.int-hero__chip:nth-child(2) { transform: translateY(-6px) rotate(4deg); }
.int-hero__chip:nth-child(3) { transform: translateY(4px) rotate(-3deg); }
.int-hero__chip:nth-child(4) { transform: translateY(-4px) rotate(7deg); }

.int-hero__title {
  position: relative;
  z-index: 2;
  margin: 0 auto 20px;
  max-width: 920px;
  font-family: "Manrope", Helvetica, sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #000;
}

.int-hero__title .accent {
  font-family: "Barlow Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #43328a;
}

.int-hero__lead {
  position: relative;
  z-index: 2;
  margin: 0 auto 36px;
  max-width: 680px;
  font-family: "Manrope", Helvetica, sans-serif;
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #424242;
}

.int-hero__cta {
  position: relative;
  z-index: 3;
}

.int-catalog {
  position: relative;
  padding: 24px 48px 96px;
}

.int-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin: 0 auto 28px;
  max-width: 1180px;
}

.int-search {
  position: relative;
  flex: 1 1 280px;
  max-width: 420px;
}

.int-search input {
  width: 100%;
  height: 52px;
  padding: 0 18px 0 48px;
  border: 1px solid #ebe7f4;
  border-radius: 14px;
  background: #fbfafe;
  font-family: "Manrope", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1b1b1b;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.int-search input::placeholder {
  color: #8a82a8;
}

.int-search input:focus {
  border-color: #c9bce8;
  box-shadow: 0 0 0 4px rgba(67, 50, 138, 0.08);
}

.int-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  color: #8a82a8;
  pointer-events: none;
}

.int-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.int-filter {
  height: 40px;
  padding: 0 16px;
  border: 1px solid #ebe7f4;
  border-radius: 999px;
  background: #fff;
  font-family: "Manrope", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #424242;
  cursor: pointer;
  appearance: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 120ms ease;
}

.int-filter:hover {
  border-color: #c9bce8;
  color: #43328a;
}

.int-filter.is-active {
  background: #43328a;
  border-color: #43328a;
  color: #fff;
}

.int-filter:active {
  transform: scale(0.97);
}

.int-count {
  margin: 0 auto 20px;
  max-width: 1180px;
  font-family: "Manrope", Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #8a82a8;
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
  max-width: 1180px;
}

.int-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 196px;
  padding: 22px 22px 20px;
  border: 1px solid #ebe7f4;
  border-radius: 20px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  scroll-margin-top: 120px;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.int-card:hover,
.int-card:focus-visible {
  transform: translateY(-3px);
  border-color: #c9bce8;
  box-shadow: 0 16px 36px rgba(67, 50, 138, 0.1);
  outline: none;
}

.int-card:active {
  transform: scale(0.99);
}

.int-card.is-hidden {
  display: none;
}

.int-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.int-card__logo {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(67, 50, 138, 0.08);
}

.int-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.int-card__badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3f0fa;
  font-family: "Manrope", Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #43328a;
  letter-spacing: -0.01em;
}

.int-card__badge--soon {
  background: #fff4e5;
  color: #b45309;
}

.int-card h3 {
  margin: 0;
  font-family: "Manrope", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #1b1b1b;
}

.int-card p {
  margin: 0;
  font-family: "Manrope", Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: #424242;
}

.int-card__cat {
  margin-top: auto;
  font-family: "Manrope", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #8a82a8;
}

.int-empty {
  display: none;
  margin: 48px auto 0;
  max-width: 420px;
  text-align: center;
  font-family: "Manrope", Helvetica, sans-serif;
  font-size: 16px;
  color: #8a82a8;
}

.int-empty.is-visible {
  display: block;
}

.int-cta {
  position: relative;
  overflow: hidden;
  padding: 72px 48px 96px;
  text-align: center;
  background: linear-gradient(180deg, #fbfafe 0%, #fff 100%);
}

.int-cta h2 {
  margin: 0 auto 16px;
  max-width: 720px;
  font-family: "Manrope", Helvetica, sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #000;
}

.int-cta h2 .accent {
  font-family: "Barlow Condensed", Helvetica, sans-serif;
  font-weight: 700;
  color: #43328a;
}

.int-cta p {
  margin: 0 auto 32px;
  max-width: 560px;
  font-family: "Manrope", Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #424242;
}

@media (max-width: 1100px) {
  .int-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .int-hero {
    padding: 132px 20px 56px;
  }

  .int-hero__chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .int-hero__chip img {
    width: 28px;
    height: 28px;
  }

  .int-catalog,
  .int-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .int-grid {
    grid-template-columns: 1fr;
  }

  .int-search {
    max-width: none;
    flex-basis: 100%;
  }

  .int-filters {
    width: 100%;
  }

  .screen.int-chrome > header.site-header .site-header__menu-btn {
    display: inline-flex;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .int-card,
  .int-filter,
  .int-hero__chip {
    transition: none;
  }

  .int-card:hover,
  .int-card:focus-visible {
    transform: none;
  }
}
