:root {
  --ink: #070909;
  --ink-soft: #0d1010;
  --ink-raised: #141818;
  --paper: #f0f2ec;
  --paper-soft: #e5e8e1;
  --text: #f2f4ef;
  --muted: #9ca39d;
  --muted-dark: #626963;
  --accent: #c8ff39;
  --accent-soft: #d9ff7a;
  --line: rgba(242, 244, 239, 0.15);
  --line-dark: rgba(7, 9, 9, 0.16);
  --display: "Segoe UI Variable Display", "Helvetica Neue", Arial, sans-serif;
  --sans: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: min(1510px, calc(100vw - 96px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--accent) var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  opacity: 0.022;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.76' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--accent);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding-inline: max(48px, calc((100vw - 1510px) / 2));
  border-bottom: 1px solid transparent;
  transition: height 0.35s var(--ease), background-color 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(7, 9, 9, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(22px) saturate(135%);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.brand__mark {
  width: 26px;
  height: 26px;
  fill: var(--accent);
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(242, 244, 239, 0.7);
  font-size: 12px;
}

.desktop-nav a,
.site-footer a,
.email-link {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.site-footer a:hover,
.email-link:hover {
  color: var(--accent);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px 11px 18px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 680;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.header-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  --spot-x: 70%;
  --spot-y: 38%;
  position: relative;
  min-height: max(790px, 100svh);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #070909;
}

.hero__image,
.hero__overlay,
.hero__grid,
.hero__spotlight {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -5;
  object-fit: cover;
  object-position: center;
  animation: hero-settle 1.6s var(--ease) both;
}

.hero__overlay {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(5, 7, 7, 0.98) 0%, rgba(5, 7, 7, 0.88) 34%, rgba(5, 7, 7, 0.18) 67%, rgba(5, 7, 7, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 7, 7, 0.95) 0%, transparent 27%, rgba(5, 7, 7, 0.1) 80%, rgba(5, 7, 7, 0.42) 100%);
}

.hero__grid {
  z-index: -3;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(242, 244, 239, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 239, 0.05) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero__spotlight {
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle 330px at var(--spot-x) var(--spot-y), rgba(200, 255, 57, 0.08), transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 86px 0 135px;
}

.eyebrow,
.section-kicker,
.card-number,
.service-card__number,
.humanoid__visual-label span,
.humanoid__features span,
.partnership__item > span {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(242, 244, 239, 0.62);
  font-size: 10px;
}

.live-dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(200, 255, 57, 0.8);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid rgba(200, 255, 57, 0.42);
  border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
}

.hero h1,
.section h2 {
  font-family: var(--display);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 1000px;
  margin-bottom: 34px;
  font-size: clamp(60px, 6.5vw, 106px);
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 42px;
  color: rgba(242, 244, 239, 0.74);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.58;
}

.hero__actions,
.contact__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 23px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 680;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.button--accent {
  color: var(--ink);
  background: var(--accent);
}

.button--accent:hover {
  background: var(--accent-soft);
}

.button--glass {
  color: var(--text);
  border-color: rgba(242, 244, 239, 0.3);
  background: rgba(7, 9, 9, 0.2);
  backdrop-filter: blur(10px);
}

.button--glass:hover {
  border-color: rgba(242, 244, 239, 0.68);
}

.button--dark {
  color: var(--text);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--accent);
}

.hero__categories {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(242, 244, 239, 0.2);
}

.hero__categories span {
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid rgba(242, 244, 239, 0.14);
  color: rgba(242, 244, 239, 0.67);
  font-size: 11px;
}

.hero__categories span:first-child {
  padding-left: 0;
  color: var(--accent);
}

.hero__categories span:last-child {
  border-right: 0;
}

.section {
  position: relative;
  padding: 145px 0;
}

.section--light {
  color: var(--ink);
  background: var(--paper);
}

.section-kicker {
  margin-bottom: 22px;
  color: inherit;
  font-size: 9px;
  font-weight: 650;
}

.section-head {
  display: grid;
  grid-template-columns: 0.4fr 1.35fr 0.65fr;
  gap: 4vw;
  align-items: end;
  padding-bottom: 76px;
  border-bottom: 1px solid var(--line-dark);
}

.section-head .section-kicker {
  align-self: start;
  margin-bottom: 0;
}

.section-head h2,
.humanoid h2,
.about h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(49px, 5.2vw, 84px);
}

.section-intro {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.68;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.direction-card {
  min-width: 0;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  color: var(--text);
  background: var(--ink-soft);
  scroll-margin-top: 90px;
  transition: background-color 0.3s ease;
}

.direction-card:hover {
  background: var(--ink-raised);
}

.direction-card__icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--accent);
  border: 1px solid rgba(200, 255, 57, 0.25);
  border-radius: 50%;
}

.direction-card__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number,
.service-card__number {
  color: var(--accent);
  font-size: 9px;
}

.direction-card h3 {
  margin: 15px 0 24px;
  font-family: var(--display);
  font-size: clamp(39px, 3.5vw, 58px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1;
}

.direction-card__text {
  min-height: 112px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.67;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 44px;
}

.tag-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(242, 244, 239, 0.68);
  font-size: 10px;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 650;
}

.card-link span {
  color: var(--accent);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.card-link:hover span {
  transform: translate(3px, -3px);
}

.humanoid {
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 48%, rgba(200, 255, 57, 0.07), transparent 27%),
    var(--ink);
}

.humanoid__word {
  position: absolute;
  top: 22px;
  left: 50%;
  color: rgba(242, 244, 239, 0.035);
  font-family: var(--display);
  font-size: clamp(120px, 17vw, 310px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.humanoid__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  align-items: center;
}

.humanoid__visual {
  position: relative;
  height: 780px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.humanoid__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(7, 9, 9, 0.7), transparent 30%),
    linear-gradient(90deg, rgba(7, 9, 9, 0.28), transparent 40%);
}

.humanoid__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.12);
}

.humanoid__visual-label {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border-top: 1px solid var(--line);
  background: rgba(7, 9, 9, 0.52);
  backdrop-filter: blur(14px);
}

.humanoid__visual-label span {
  color: var(--muted);
  font-size: 8px;
}

.humanoid__visual-label strong {
  font-size: 12px;
  font-weight: 560;
}

.humanoid__content .section-kicker {
  color: var(--accent);
}

.humanoid h2 {
  max-width: 820px;
  margin-bottom: 42px;
}

.humanoid__content > p:not(.section-kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.humanoid__content .humanoid__lead {
  color: var(--text);
  font-size: clamp(20px, 1.65vw, 27px);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.humanoid__features {
  margin: 48px 0 44px;
  border-top: 1px solid var(--line);
}

.humanoid__features div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.humanoid__features span {
  color: var(--accent);
  font-size: 8px;
}

.humanoid__features strong {
  font-size: 13px;
  font-weight: 550;
}

.section-head--row {
  grid-template-columns: 1.5fr 0.5fr;
}

.section-head--row .section-intro {
  align-self: end;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--paper);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
  color: var(--text);
  background: var(--ink);
}

.service-card__arrow {
  position: absolute;
  top: 26px;
  right: 28px;
  font-size: 22px;
  transition: transform 0.25s ease;
}

.service-card:hover .service-card__arrow {
  color: var(--accent);
  transform: translate(3px, -3px);
}

.service-card h3 {
  margin: auto 0 22px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 540;
  letter-spacing: -0.045em;
}

.service-card p {
  min-height: 94px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.65;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: var(--muted);
}

.about {
  background:
    linear-gradient(120deg, rgba(200, 255, 57, 0.055), transparent 38%),
    var(--ink-soft);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 9vw;
  align-items: end;
}

.about h2 {
  max-width: 900px;
}

.about__copy {
  color: var(--muted);
  line-height: 1.72;
}

.about__lead {
  color: var(--text);
  font-size: clamp(21px, 1.65vw, 27px);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.about__copy p:last-child {
  margin-bottom: 0;
}

.partnership {
  min-height: 280px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 80px;
  gap: 0;
  align-items: stretch;
  margin-top: 120px;
  border: 1px solid var(--line);
}

.partnership > * {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.partnership > *:last-child {
  border-right: 0;
}

.partnership__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partnership__intro h3 {
  max-width: 320px;
  margin: 0;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.partnership__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.partnership__item > span {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 8px;
}

.partnership__item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.partnership .round-link {
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--accent);
  font-size: 25px;
  transition: background-color 0.2s ease;
}

.partnership .round-link:hover {
  background: var(--accent-soft);
}

.contact {
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--accent);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 9vw;
  align-items: end;
}

.contact h2 {
  font-size: clamp(58px, 6.5vw, 106px);
}

.contact__content > p {
  margin-bottom: 38px;
  font-size: 18px;
  line-height: 1.65;
}

.contact__actions {
  align-items: flex-start;
  flex-direction: column;
}

.email-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(7, 9, 9, 0.34);
  font-size: 13px;
}

.contact .email-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.site-footer {
  padding: 68px 0 28px;
  background: var(--ink);
}

.site-footer__top {
  min-height: 145px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 30px;
}

.site-footer__top > p {
  color: var(--muted);
  font-size: 13px;
}

.site-footer__top > a:last-child {
  justify-self: end;
  font-size: 12px;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(242, 244, 239, 0.42);
  font-size: 10px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom p:last-child {
  text-align: right;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.78s var(--ease), transform 0.78s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal-delay="1"] { transition-delay: 0.1s; }
.js [data-reveal-delay="2"] { transition-delay: 0.2s; }
.js [data-reveal-delay="3"] { transition-delay: 0.3s; }

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.45); }
  80%, 100% { opacity: 0; transform: scale(1.45); }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 56px, 1510px);
  }

  .site-header {
    padding-inline: 28px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .section-head {
    grid-template-columns: 0.35fr 1.3fr 0.75fr;
  }

  .direction-card {
    padding: 27px;
  }

  .direction-card__text {
    min-height: 140px;
  }

  .humanoid__layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5vw;
  }

  .humanoid__visual {
    height: 700px;
  }

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

  .about__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 6vw;
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
    background: rgba(7, 9, 9, 0.86);
    border-color: var(--line);
    backdrop-filter: blur(16px);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-open .menu-toggle > span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle > span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 1;
    top: 68px;
    left: 0;
    width: 100vw;
    height: calc(100dvh - 68px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 24px 18px;
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .menu-open {
    overflow: hidden;
  }

  .menu-open .mobile-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(25px, 7vw, 35px);
    font-weight: 520;
    letter-spacing: -0.05em;
  }

  .mobile-menu a:last-child {
    margin-top: 10px;
    padding: 15px 18px;
    color: var(--ink);
    border: 0;
    background: var(--accent);
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
  }

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

  .hero__categories span {
    min-height: 60px;
  }

  .hero__categories span:nth-child(2) {
    border-right: 0;
  }

  .hero__categories span:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .hero__categories span:nth-child(3) {
    padding-left: 0;
  }

  .section-head,
  .section-head--row,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-head .section-kicker {
    margin-bottom: 4px;
  }

  .section-intro {
    max-width: 650px;
  }

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

  .direction-card {
    min-height: 560px;
  }

  .direction-card__text {
    min-height: auto;
  }

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

  .humanoid__visual {
    height: 640px;
  }

  .humanoid__content {
    max-width: 760px;
  }

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

  .partnership__intro {
    min-height: 230px;
  }

  .partnership__item:nth-child(2) {
    border-right: 0;
  }

  .partnership__item:nth-child(3),
  .partnership .round-link {
    border-top: 1px solid var(--line);
  }

  .partnership .round-link {
    min-height: 130px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .hero {
    min-height: 900px;
    align-items: flex-end;
  }

  .hero__image {
    object-position: 69% center;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(5, 7, 7, 0.99) 3%, rgba(5, 7, 7, 0.9) 50%, rgba(5, 7, 7, 0.12) 82%, rgba(5, 7, 7, 0.42) 100%),
      linear-gradient(90deg, rgba(5, 7, 7, 0.65), transparent 72%);
  }

  .hero__grid {
    opacity: 0.25;
    background-size: 25vw 25vw;
  }

  .hero__content {
    padding: 125px 0 200px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 8px;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(45px, 13.2vw, 68px);
    line-height: 0.98;
  }

  .hero__lead {
    margin-bottom: 30px;
    font-size: 15px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__categories span {
    padding: 0 11px;
    font-size: 9px;
  }

  .section {
    padding: 92px 0;
  }

  .section-head {
    padding-bottom: 44px;
  }

  .section-head h2,
  .humanoid h2,
  .about h2,
  .contact h2 {
    font-size: clamp(43px, 12.2vw, 62px);
  }

  .direction-grid,
  .service-grid {
    margin-top: 46px;
  }

  .direction-card {
    min-height: 530px;
    padding: 24px;
  }

  .direction-card__icon {
    width: 68px;
    height: 68px;
  }

  .direction-card__icon svg {
    width: 36px;
    height: 36px;
  }

  .direction-card h3 {
    font-size: 43px;
  }

  .humanoid__word {
    top: 40px;
    font-size: 30vw;
  }

  .humanoid__visual {
    height: 540px;
  }

  .humanoid__visual img {
    object-position: 72% center;
    transform: scale(1.2);
  }

  .humanoid__content {
    padding-top: 30px;
  }

  .humanoid h2 {
    margin-bottom: 28px;
  }

  .humanoid__content > p:not(.section-kicker) {
    font-size: 15px;
  }

  .humanoid__content .humanoid__lead {
    font-size: 20px;
  }

  .humanoid__features div {
    grid-template-columns: 38px 1fr;
  }

  .humanoid .button {
    width: 100%;
  }

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

  .service-card {
    min-height: 310px;
    padding: 24px;
  }

  .service-card p {
    min-height: auto;
  }

  .about__grid {
    gap: 48px;
  }

  .partnership {
    grid-template-columns: 1fr;
    margin-top: 75px;
  }

  .partnership > *,
  .partnership__item:nth-child(2),
  .partnership__item:nth-child(3) {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .partnership .round-link {
    min-height: 90px;
    border-bottom: 0;
  }

  .contact {
    min-height: 680px;
  }

  .contact__content > p {
    font-size: 16px;
  }

  .contact__actions,
  .contact .button {
    width: 100%;
  }

  .site-footer__top,
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__top {
    gap: 18px;
  }

  .site-footer__top > a:last-child {
    justify-self: start;
  }

  .site-footer__bottom {
    gap: 8px;
  }

  .site-footer__bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 410px) {
  .hero h1 {
    font-size: 45px;
  }

  .hero__lead {
    font-size: 14px;
  }

  .button {
    width: 100%;
    padding-inline: 17px;
    gap: 14px;
  }

  .direction-card h3 {
    font-size: 40px;
  }

  .humanoid__visual {
    height: 500px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
