.home2-section,
.home2-hero,
.home2-tech,
.home2-contact {
  position: relative;
}

#directions,
#services,
#systems,
#projects,
#company,
#journal,
#faq,
#contacts {
  scroll-margin-top: 92px;
}

.nav-links a {
  white-space: nowrap;
}

.home2-hero {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  min-height: min(780px, calc(100svh - 74px));
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 126px 0 72px;
  color: #fff;
  background: #0b1117;
}

.home2-hero-media {
  position: absolute;
  inset: -4%;
  z-index: -3;
  display: block;
  margin: 0;
  overflow: hidden;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.055);
  will-change: transform;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
  animation: home2-hero-drift 18s ease-in-out infinite alternate;
}

.home2-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 13, 19, .82) 0%, rgba(7, 13, 19, .56) 56%, rgba(7, 13, 19, .42) 100%);
}

.home2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(104deg, transparent 34%, rgba(255, 255, 255, .075) 48%, transparent 62%);
  transform: translate3d(-115%, 0, 0);
  animation: home2-hero-sweep 11s cubic-bezier(.55, 0, .2, 1) 1.2s infinite;
}

@keyframes home2-hero-drift {
  from {
    scale: 1;
  }
  to {
    scale: 1.018;
  }
}

@keyframes home2-hero-sweep {
  0%,
  68% {
    transform: translate3d(-115%, 0, 0);
  }
  100% {
    transform: translate3d(115%, 0, 0);
  }
}

.home2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: end;
}

.home2-h1 {
  display: grid;
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 6vw, 88px);
  line-height: .91;
  letter-spacing: -.065em;
  text-shadow: 0 3px 28px rgba(0, 0, 0, .22);
}

.home2-h1-context {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home2-h1-context,
.home2-h1-line {
  display: block;
  opacity: 1;
  transform: translate3d(0, 18px, 0);
  animation: home2-title-in .72s cubic-bezier(.2, .8, .2, 1) forwards;
}

.home2-h1-context {
  animation-delay: .06s;
}

.home2-h1-line:nth-of-type(2) {
  animation-delay: .13s;
}

.home2-h1-line:nth-of-type(3) {
  animation-delay: .2s;
}

.home2-h1-line:nth-of-type(4) {
  animation-delay: .27s;
}

@keyframes home2-title-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.home2-semantic-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.home2-hero-copy {
  display: grid;
  gap: 17px;
  align-self: end;
  padding-bottom: 5px;
  opacity: 1;
  transform: translate3d(0, 14px, 0);
  animation: home2-copy-in .72s cubic-bezier(.2, .8, .2, 1) .34s forwards;
}

@keyframes home2-copy-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.home2-hero-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.45;
}

.home2-hero-copy .home2-hero-lead {
  color: #fff;
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.28;
  font-weight: 720;
  letter-spacing: -.015em;
}

.home2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.home2-button,
.home2-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 820;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.home2-button:hover,
.home2-button:focus-visible,
.home2-text-link:hover,
.home2-text-link:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.home2-button-light {
  border-color: #fff;
  background: #fff;
  color: var(--accent);
}

.home2-section {
  padding: clamp(76px, 8vw, 118px) 0;
  background: #fff;
}

.home2-section-soft {
  background: #f4f7f9;
}

.home2-section-dark {
  background: #101820;
  color: #fff;
}

.home2-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .68fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.home2-kicker {
  margin: 0 0 15px;
  color: #50647a;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.home2-section-dark .home2-kicker {
  color: #9ab7d2;
}

.home2-heading h2,
.home2-tech h2,
.home2-ai-copy h2,
.home2-partner h2,
.home2-company h2,
.home2-contact h2 {
  margin: 0;
  font-size: clamp(40px, 4.7vw, 68px);
  line-height: .98;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.home2-heading > p,
.home2-section-intro {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
}

.home2-tech {
  --tech-shift-y: 0px;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(72px, 8vw, 112px) 0;
  background: #eef3f6;
}

.home2-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(45, 82, 112, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 82, 112, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent 2%, #000 44%, #000 100%);
}

.home2-tech-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: center;
}

.home2-tech-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform .55s cubic-bezier(.2, .75, .2, 1), box-shadow .55s ease;
}

.home2-tech-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(18, 55, 82, .08);
}

.home2-tech-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(123, 205, 255, .92), transparent);
  box-shadow: 0 0 18px rgba(88, 181, 237, .42);
  animation: home2-data-scan 6.5s cubic-bezier(.45, 0, .2, 1) infinite;
}

.home2-tech-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 74px rgba(25, 56, 82, .18);
}

@keyframes home2-data-scan {
  0%,
  14% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  24% {
    opacity: .9;
  }
  72% {
    opacity: .45;
  }
  82%,
  100% {
    opacity: 0;
    transform: translate3d(0, 460px, 0);
  }
}

.home2-tech-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transform: translate3d(0, var(--tech-shift-y), 0) scale(1.07);
  will-change: transform;
  transition: transform .18s linear;
}

.home2-tech-copy {
  display: grid;
  gap: 22px;
}

.home2-tech-copy > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.home2-markers {
  display: grid;
  gap: 0;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.home2-markers span {
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  opacity: 0;
  transform: translate3d(12px, 0, 0);
  transition: opacity .48s ease, transform .48s cubic-bezier(.2, .75, .2, 1);
}

.home2-markers span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 54px;
  height: 1px;
  background: #428fc2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.2, .75, .2, 1);
}

.home2-tech-copy.visible .home2-markers span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home2-tech-copy.visible .home2-markers span::after {
  transform: scaleX(1);
}

.home2-tech-copy.visible .home2-markers span:nth-child(2) {
  transition-delay: .09s;
}

.home2-tech-copy.visible .home2-markers span:nth-child(2)::after {
  transition-delay: .09s;
}

.home2-tech-copy.visible .home2-markers span:nth-child(3) {
  transition-delay: .18s;
}

.home2-tech-copy.visible .home2-markers span:nth-child(3)::after {
  transition-delay: .18s;
}

.home2-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home2-image-card {
  position: relative;
  min-height: clamp(310px, 23vw, 340px);
  overflow: hidden;
  display: flex;
  align-items: end;
  border: 1px solid rgba(220, 227, 234, .78);
  border-radius: var(--radius);
  color: #fff;
  background: #101820;
  isolation: isolate;
  box-shadow: 0 18px 50px rgba(16, 32, 51, .08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.home2-image-card > img,
.home2-image-card picture,
.home2-image-card picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .7s ease;
}

.home2-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 10, 15, .03) 22%, rgba(5, 10, 15, .88) 92%);
}

.home2-image-card:hover > img,
.home2-image-card:hover picture img {
  transform: scale(1.035);
}

.home2-image-card:hover,
.home2-image-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(16, 32, 51, .16);
}

.home2-image-card-copy {
  width: 100%;
  padding: clamp(24px, 2.5vw, 34px);
}

.home2-card-label,
.home2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.home2-card-label span,
.home2-tags span {
  display: inline-flex;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home2-image-card h3,
.home2-service-card h3,
.home2-system-card h3,
.home2-project-card h3,
.home2-article-card h3 {
  margin: 0;
  font-size: clamp(25px, 2.05vw, 34px);
  line-height: 1.04;
  letter-spacing: -.035em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.home2-image-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.45;
}

.home2-card-link {
  display: inline-flex;
  margin-top: 19px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
}

.home2-service-card,
.home2-system-card,
.home2-project-card,
.home2-article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.home2-service-card {
  display: grid;
  grid-template-rows: 250px 1fr;
}

.home2-service-card img,
.home2-system-card img,
.home2-project-card img,
.home2-article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home2-service-content,
.home2-system-content,
.home2-project-content,
.home2-article-content {
  display: grid;
  align-content: start;
  padding: clamp(22px, 2.2vw, 30px);
}

.home2-service-content {
  min-height: 350px;
}

.home2-service-content p,
.home2-system-content p,
.home2-project-content p,
.home2-article-content p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.home2-service-content .home2-card-link,
.home2-system-content .home2-card-link,
.home2-project-content .home2-card-link,
.home2-article-content .home2-card-link {
  align-self: end;
  justify-self: start;
  margin-top: 22px;
  color: var(--accent);
}

.home2-systems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home2-system-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  min-height: 440px;
}

.home2-system-content {
  min-height: 180px;
}

.home2-system-card-ai {
  border-color: rgba(56, 116, 168, .46);
  background: #edf5fb;
  box-shadow: inset 0 4px 0 #3976a9;
}

.home2-system-card-ai .home2-card-label span {
  color: #3976a9;
}

.home2-ai {
  overflow: hidden;
  background: #0d1823;
  color: #fff;
}

.home2-ai-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: stretch;
}

.home2-ai-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(38px, 5vw, 72px) 0;
}

.home2-ai-copy > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}

.home2-ai-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.home2-ai-point {
  padding: 20px 18px 0 0;
}

.home2-ai-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.home2-ai-point span {
  display: block;
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  line-height: 1.45;
}

.home2-ai-visual {
  min-height: 610px;
}

.home2-ai-visual img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.home2-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home2-project-card,
.home2-article-card {
  display: grid;
  grid-template-rows: 210px 1fr;
}

.home2-project-content,
.home2-article-content {
  min-height: 240px;
}

.home2-project-content .home2-tags span,
.home2-article-content .home2-tags span {
  color: #587087;
  letter-spacing: .08em;
}

.home2-section-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 32px;
}

.home2-partner {
  padding: clamp(70px, 7vw, 100px);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(8, 25, 31, .94), rgba(8, 25, 31, .72)),
    url("solutions/partners-hero.webp") center / cover no-repeat;
  color: #fff;
}

.home2-partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: end;
}

.home2-partner p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}

.home2-company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.home2-company-portrait {
  margin: 0;
}

.home2-company-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.home2-company-caption {
  display: grid;
  gap: 2px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.home2-company-caption strong {
  color: var(--ink);
  font-size: 15px;
}

.home2-company-copy {
  display: grid;
  gap: 24px;
}

.home2-company-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.56;
}

.home2-company-fact {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.home2-company-fact strong {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
}

.home2-company-fact p {
  margin: 0;
  color: var(--muted);
}

.home2-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home2-contact {
  padding: clamp(76px, 8vw, 116px) 0;
  background: #101820;
  color: #fff;
}

.home2-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
  gap: clamp(48px, 8vw, 112px);
}

.home2-contact-copy {
  display: grid;
  align-content: start;
  gap: 20px;
}

.home2-contact-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}

.home2-direct-contacts {
  display: grid;
  justify-items: start;
  gap: 11px;
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.home2-direct-contacts strong {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.home2-contact-phone {
  color: #fff;
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.15;
  font-weight: 780;
  letter-spacing: -.02em;
}

.home2-contact-email {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.4;
}

.home2-contact-phone:hover,
.home2-contact-email:hover {
  color: #b8d8ef;
}

.home2-direct-contacts .home2-telegram-link {
  margin-top: 7px;
  border-color: #229ed9;
  background: #229ed9;
  color: #fff;
}

.home2-direct-contacts .home2-telegram-link:hover,
.home2-direct-contacts .home2-telegram-link:focus-visible {
  background: #168ac2;
  border-color: #168ac2;
}

.home2-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home2-field {
  display: grid;
  gap: 8px;
}

.home2-field-wide {
  grid-column: 1 / -1;
}

.home2-field label {
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.home2-field input,
.home2-field select,
.home2-field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  outline: none;
  padding: 13px 14px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.home2-field select option {
  color: #111317;
}

.home2-field textarea {
  min-height: 132px;
  resize: vertical;
}

.home2-field input:focus,
.home2-field select:focus,
.home2-field textarea:focus {
  border-color: rgba(255, 255, 255, .62);
}

.home2-form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 5px;
}

.home2-telegram-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 780;
}

.home2-form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: #b8d8ef;
}

.home2-trap {
  position: absolute;
  left: -9999px;
}

@media (max-width: 1100px) {
  .home2-hero-grid,
  .home2-tech-grid,
  .home2-ai-grid,
  .home2-company-grid,
  .home2-contact-grid {
    gap: 48px;
  }

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

@media (max-width: 900px) {
  .home2-heading,
  .home2-hero-grid,
  .home2-tech-grid,
  .home2-ai-grid,
  .home2-company-grid,
  .home2-contact-grid,
  .home2-partner-grid {
    grid-template-columns: 1fr;
  }

  .home2-card-grid,
  .home2-systems-grid,
  .home2-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home2-hero {
    min-height: auto;
  }

  .home2-hero-copy {
    max-width: 680px;
  }

  .home2-ai-visual {
    min-height: 440px;
  }

  .home2-ai-visual img {
    min-height: 440px;
  }
}

@media (max-width: 767px) {
  #directions,
  #services,
  #systems,
  #projects,
  #company,
  #journal,
  #faq,
  #contacts {
    scroll-margin-top: 72px;
  }

  .home2-hero {
    min-height: calc(100svh - 62px);
    padding: 92px 0 38px;
  }

  .home2-hero-media {
    transform: scale(1.035);
    animation-duration: 22s;
  }

  .home2-hero-media img {
    object-position: 58% center;
  }

  .home2-hero-grid {
    gap: 32px;
  }

  .home2-h1 {
    font-size: clamp(40px, 12.2vw, 48px);
    line-height: .95;
    letter-spacing: -.045em;
  }

  .home2-h1-context {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .home2-hero-copy {
    gap: 12px;
  }

  .home2-hero-copy p {
    font-size: 16px;
  }

  .home2-hero-copy .home2-hero-lead {
    font-size: 20px;
  }

  .home2-section,
  .home2-tech,
  .home2-contact {
    padding: 68px 0;
  }

  .home2-heading {
    gap: 20px;
    margin-bottom: 32px;
  }

  .home2-heading h2,
  .home2-tech h2,
  .home2-ai-copy h2,
  .home2-partner h2,
  .home2-company h2,
  .home2-contact h2 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.02;
    letter-spacing: -.035em;
    text-wrap: pretty;
  }

  .home2-tech-visual,
  .home2-tech-visual img {
    min-height: 320px;
  }

  .home2-tech::before {
    opacity: .22;
    background-size: 42px 42px;
  }

  .home2-card-grid,
  .home2-systems-grid,
  .home2-projects-grid,
  .home2-articles-grid {
    grid-template-columns: 1fr;
  }

  .home2-image-card {
    min-height: 0;
    display: grid;
    grid-template-rows: 220px auto;
    align-items: stretch;
    color: var(--ink);
    background: #fff;
  }

  .home2-image-card::after {
    display: none;
  }

  .home2-image-card > img,
  .home2-image-card > picture {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: 220px;
  }

  .home2-image-card > picture img {
    position: static;
    width: 100%;
    height: 100%;
  }

  .home2-image-card-copy {
    padding: 23px 22px 25px;
    background: #fff;
  }

  .home2-image-card .home2-card-label span {
    color: #587087;
  }

  .home2-image-card h3,
  .home2-service-card h3,
  .home2-system-card h3,
  .home2-project-card h3,
  .home2-article-card h3 {
    font-size: clamp(25px, 7.4vw, 29px);
    line-height: 1.06;
    letter-spacing: -.025em;
    text-wrap: pretty;
  }

  .home2-image-card p {
    margin-top: 12px;
    color: var(--muted);
  }

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

  .home2-image-card:hover > img,
  .home2-image-card:hover picture img {
    transform: none;
  }

  .home2-service-card {
    grid-template-rows: 205px auto;
  }

  .home2-service-content {
    min-height: 0;
  }

  .home2-system-card {
    grid-template-rows: 205px auto;
    min-height: 0;
  }

  .home2-project-card,
  .home2-article-card {
    grid-template-rows: 205px auto;
  }

  .home2-system-content,
  .home2-project-content,
  .home2-article-content {
    min-height: 0;
  }

  .home2-service-content,
  .home2-system-content,
  .home2-project-content,
  .home2-article-content {
    padding: 23px 22px 25px;
    background: #fff;
  }

  .home2-ai-points {
    grid-template-columns: 1fr;
  }

  .home2-ai-point {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .home2-ai-visual,
  .home2-ai-visual img {
    min-height: 340px;
  }

  .home2-partner {
    padding: 48px 26px;
  }

  .home2-contact-form {
    grid-template-columns: 1fr;
  }

  .home2-direct-contacts {
    justify-items: center;
    text-align: center;
  }

  .home2-contact-email {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .home2-field-wide,
  .home2-form-actions,
  .home2-form-status {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .home2-h1 {
    font-size: clamp(39px, 11.8vw, 44px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home2-hero-media,
  .home2-hero::after,
  .home2-h1-context,
  .home2-h1-line,
  .home2-hero-copy,
  .home2-tech-visual::after {
    animation: none;
  }

  .home2-h1-context,
  .home2-h1-line,
  .home2-hero-copy,
  .home2-markers span {
    opacity: 1;
    transform: none;
  }

  .home2-tech-visual,
  .home2-tech-visual img,
  .home2-markers span,
  .home2-markers span::after {
    transition: none;
  }

  .home2-tech-visual img {
    transform: scale(1.03);
  }

  .home2-image-card,
  .home2-image-card > img,
  .home2-image-card picture img {
    transition: none;
  }
}
