.home-hero {
  max-width: var(--maxw);
  padding: clamp(24px, 4vw, 56px) var(--pad-x) clamp(40px, 6vw, 80px);
  margin: 0 auto;
}
.home-hero-top {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 28px;
  display: flex;
}
.home-hero-top .pick {
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  align-items: center;
  gap: 8px;
  font-size: 11px;
  display: inline-flex;
}
.home-hero-top .pick:before {
  content: "↓";
  color: var(--orange);
  font-size: 13px;
}
.cat-row {
  gap: 14px;
  height: clamp(520px, 64vh, 680px);
  display: flex;
}
.cat {
  color: #fff;
  isolation: isolate;
  text-shadow:
    0 1px 6px #0000008c,
    0 2px 16px #00000059;
  background: 0 0;
  border: 1px solid #0000;
  border-radius: 22px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(24px, 2.4vw, 36px);
  text-decoration: none;
  transition:
    flex 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    color 0.4s,
    border-color 0.4s;
  display: flex;
  position: relative;
  overflow: hidden;
}
.cat:before {
  content: "";
  z-index: -2;
  opacity: 1;
  transition:
    opacity 0.55s,
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: absolute;
  inset: 0;
}
.cat:after {
  content: "";
  z-index: -1;
  opacity: 0;
  background: linear-gradient(#0000 40%, #00000059 100%);
  transition: opacity 0.55s;
  position: absolute;
  inset: 0;
}
.cat.industry:before {
  background-image:
    linear-gradient(155deg, #00000080 100%),
    url(/assets/images/home-backgrounds/industry.png);
  background-position: 50%;
  background-size: cover;
}
.cat.it:before {
  background-image:
    linear-gradient(155deg, #0009 100%),
    url(/assets/images/home-backgrounds/it.png);
  background-position: 50%;
  background-size: cover;
}
.cat.med:before {
  background-image:
    linear-gradient(155deg, #00000080 100%),
    url(/assets/images/home-backgrounds/medicine.png);
  background-position: 50%;
  background-size: cover;
}
.cat.robotics:before {
  background-image:
    linear-gradient(155deg, #00000080 100%),
    url(/assets/images/home-backgrounds/robotics.png);
  background-position: 50%;
  background-size: cover;
}
.cat-top {
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  transition: opacity 0.3s;
  display: flex;
}
.cat-num {
  font-family: var(--font-mono);
  color: #ffffff8c;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.4s;
}
.cat-tag {
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffffbf;
  white-space: nowrap;
  background: #fff3;
  border: 1px solid #ffffff40;
  border-radius: 100px;
  margin-bottom: 18px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  transition: all 0.4s;
}
.cat-mid {
  margin-top: auto;
}
.cat-title {
  font-family: var(--font-head);
  letter-spacing: -0.025em;
  transform-origin: 50%;
  margin: 0 0 12px;
  font-size: clamp(12px, 0.8vw, 30px);
  font-weight: 500;
  line-height: 0.98;
  transition:
    color 0.4s,
    font-size 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  transform: rotate(0);
}
.cat-sub {
  color: #ffffffb8;
  max-width: 320px;
  max-height: 80px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  transition:
    color 0.4s,
    opacity 0.4s,
    max-height 0.5s;
}
.cat-list {
  opacity: 0;
  flex-direction: column;
  gap: 9px;
  max-height: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  transition:
    max-height 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.4s 50ms,
    margin 0.4s;
  display: flex;
  overflow: hidden;
}
.cat-list li {
  color: #ffffffe0;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
}
.cat-list li:before {
  content: "";
  background: var(--orange);
  flex-shrink: 0;
  width: 18px;
  height: 1px;
  margin-top: 9px;
}
.cat-bottom {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  transition: opacity 0.3s;
  display: flex;
}
.cat-cta {
  font-family: var(--font-body);
  color: #ffffffb3;
  letter-spacing: 0.04em;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.4s;
}
.cat-arrow {
  color: #fff;
  border: 1px solid #ffffff59;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 17px;
  transition: all 0.4s;
  display: flex;
}
@media (hover: hover) {
  .cat-row:hover .cat {
    flex: 0.65;
  }
  .cat-row:hover .cat:hover {
    flex: 2.6;
  }
  .cat-row:hover .cat:hover .cat-title {
    font-size: 42px;
  }
  .cat:hover:before {
    transform: scale(1.04);
  }
  .cat:hover:after {
    opacity: 1;
  }
  .cat:hover .cat-tag {
    color: #fff;
    background: #ffffff26;
    border-color: #ffffff73;
  }
  .cat:hover .cat-sub {
    opacity: 0;
    max-height: 0;
    margin: 0;
  }
  .cat:hover .cat-list {
    opacity: 1;
    max-height: 260px;
  }
  .cat:hover .cat-cta {
    color: #fff;
  }
  .cat:hover .cat-arrow {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: rotate(-45deg);
  }
  .cat-row:hover .cat:not(:hover) .cat-top,
  .cat-row:hover .cat:not(:hover) .cat-bottom {
    opacity: 0;
    pointer-events: none;
  }
  .cat-row:hover .cat:not(:hover) .cat-sub,
  .cat-row:hover .cat:not(:hover) .cat-tag {
    opacity: 0;
    border-color: #0000;
    max-height: 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cat-row:hover .cat:not(:hover) .cat-mid {
    justify-content: center;
    align-items: center;
    margin: 0;
    display: flex;
    position: absolute;
    inset: 0 0 0 50%;
  }
  .cat-row:hover .cat:not(:hover) .cat-title {
    white-space: nowrap;
    margin: 0;
    font-size: 26px;
    transform: rotate(-60deg);
  }
}
.strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.strip-inner {
  max-width: var(--maxw);
  padding: 36px var(--pad-x);
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 36px;
  margin: 0 auto;
  display: grid;
}
.strip-item .k {
  font-family: var(--font-head);
  letter-spacing: -0.01em;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
}
.strip-item .v {
  color: var(--ink-soft);
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.45;
  display: block;
}
.about {
  max-width: var(--maxw);
  padding: clamp(60px, 8vw, 110px) var(--pad-x);
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
  gap: clamp(40px, 6vw, 90px);
  margin: 0 auto;
  display: grid;
}
.about-eyebrow {
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 24px;
  font-size: 12px;
}
.about h2 {
  font-family: var(--font-head);
  letter-spacing: -0.015em;
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.1;
}
.about p {
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.6;
}
.about p strong {
  color: var(--ink);
  font-weight: 600;
}
.cycle-compact {
  background: var(--paper-warm);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cycle-inner {
  max-width: var(--maxw);
  padding: clamp(56px, 7vw, 90px) var(--pad-x);
  margin: 0 auto;
}
.cycle-head-row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 36px;
  display: flex;
}
.cycle-head-row h2 {
  font-family: var(--font-head);
  letter-spacing: -0.015em;
  margin: 0;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
}
.cycle-row {
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  display: grid;
}
.cycle-cell {
  border-right: 1px solid var(--line-soft);
  padding: 24px 18px 24px 16px;
}
.cycle-cell:last-child {
  border-right: none;
}
.cycle-cell .n {
  font-family: var(--font-mono);
  color: var(--orange);
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
  display: block;
}
.cycle-cell h4 {
  font-family: var(--font-head);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
}
.cycle-cell p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}
.mini-cta {
  max-width: var(--maxw);
  padding: clamp(56px, 7vw, 90px) var(--pad-x);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
  display: grid;
}
.mini-cta h2 {
  font-family: var(--font-head);
  letter-spacing: -0.015em;
  max-width: 720px;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.1;
}
.mini-cta .actions {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}
@media (max-width: 900px) {
  .cat-row {
    flex-direction: column;
    gap: 12px;
    height: auto;
  }
  .cat {
    min-height: 280px;
  }
  .cat-list {
    opacity: 1;
    max-height: 260px;
    margin-top: 14px;
  }
  .strip-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 24px;
  }
  .about {
    grid-template-columns: 1fr;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .cycle-inner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .cycle-row {
    grid-template-columns: 1fr;
  }
  .cycle-cell {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
    padding: 20px 0;
  }
  .cycle-cell:last-child {
    border-bottom: none;
  }
  .mini-cta {
    grid-template-columns: 1fr;
  }
  .cat.industry:before {
    background-image:
      linear-gradient(155deg, #000000b3 100%),
      url(/assets/images/home-backgrounds/industry.png);
  }
  .cat.it:before {
    background-image:
      linear-gradient(155deg, #000000b3 100%),
      url(/assets/images/home-backgrounds/it.png);
  }
  .cat.med:before {
    background-image:
      linear-gradient(155deg, #000000b3 100%),
      url(/assets/images/home-backgrounds/medicine.png);
  }
  .cat.robotics:before {
    background-image:
      radial-gradient(60% 80% at 20% 20%, #e8703a66, #0000 60%),
      linear-gradient(155deg, #0000008c 0%, #14264ae6 100%);
  }
}
