.page-home {
  --hm-slant: 12deg;
  --hm-radius: 8px;
  --hm-frame: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  --hm-frame-lg: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
}

.page-home .hm-hero {
  position: relative;
  overflow: hidden;
  background: var(--sb-deep);
  color: var(--sb-paper);
  padding: clamp(2.4rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
}

.page-home .hm-hero__slash {
  position: absolute;
  top: -28%;
  right: -8%;
  width: 58%;
  height: 168%;
  background: linear-gradient(158deg, var(--sb-orange) 0%, var(--sb-orange-lt) 58%, var(--sb-amber) 100%);
  clip-path: polygon(32% 0, 100% 0, 68% 100%, 0 100%);
  opacity: .94;
  pointer-events: none;
}

.page-home .hm-hero__ticks {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--sb-cyan) 0 2px, transparent 2px 22px);
  opacity: .5;
  pointer-events: none;
}

.page-home .hm-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.page-home .hm-hero__copy {
  max-width: 46rem;
}

.page-home .hm-hero h1 {
  margin: .85rem 0 1.1rem;
  font-family: var(--sb-font-display);
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: clamp(1.85rem, 4.6vw, 3.4rem);
  line-height: 1.16;
  color: var(--sb-paper);
}

.page-home .hm-hero .sb-lead {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(.98rem, 1.6vw, 1.12rem);
  line-height: 1.78;
  color: rgba(251, 246, 236, .84);
}

.page-home .hm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 1.85rem 0 1.6rem;
}

.page-home .hm-hero__btn {
  transition: transform .3s cubic-bezier(.22, .7, .3, 1);
}

.page-home .hm-hero__btn:hover,
.page-home .hm-hero__btn:focus-visible {
  transform: translate(5px, -4px);
}

.page-home .hm-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .hm-hero__media {
  position: relative;
  margin: 0;
}

.page-home .hm-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  clip-path: var(--hm-frame-lg);
  border: 1px solid rgba(251, 246, 236, .16);
  filter: saturate(.94) contrast(1.06);
}

.page-home .hm-hero__cap {
  display: inline-block;
  margin-top: .7rem;
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--sb-cyan);
}

@media (min-width: 900px) {
  .page-home .hm-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
  .page-home .hm-hero__copy {
    padding-left: clamp(0px, 1.5vw, 18px);
  }
}

@media (max-width: 899px) {
  .page-home .hm-hero__slash {
    top: auto;
    bottom: -34%;
    right: -22%;
    width: 86%;
    height: 78%;
    opacity: .22;
  }
}

.page-home .hm-lines {
  background: var(--sb-cream);
}

.page-home .hm-lines__head {
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.page-home .hm-lines__tablist {
  display: flex;
  gap: .15rem;
  overflow-x: auto;
  padding-bottom: 0;
  border-bottom: 2px solid var(--sb-line-ink);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-home .hm-lines__tablist::-webkit-scrollbar {
  display: none;
}

.page-home .hm-tab {
  flex: 0 0 auto;
  position: relative;
  padding: .8rem 1rem .95rem;
  border: 0;
  background: none;
  color: var(--sb-slate);
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: -.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease;
}

.page-home .hm-tab:hover {
  color: var(--sb-ink);
}

.page-home .hm-tab[aria-selected="true"] {
  color: var(--sb-ink);
}

.page-home .hm-tab[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: .55rem;
  right: .55rem;
  bottom: -2px;
  height: 3px;
  background: var(--sb-orange);
}

.page-home .hm-lines__panels {
  margin-top: 1.9rem;
}

.page-home .hm-line {
  animation: hm-fade .32s ease both;
}

@keyframes hm-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.page-home .hm-line__title {
  margin: 0 0 1rem;
  font-family: var(--sb-font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--sb-ink);
}

.page-home .hm-line__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.page-home .hm-line__spec {
  margin: 0;
  padding: 1.15rem 1.25rem;
  background: var(--sb-paper);
  border-left: 3px solid var(--sb-orange);
  clip-path: var(--sb-cut);
  display: grid;
  gap: .7rem;
}

.page-home .hm-line__spec > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px dashed var(--sb-line-ink);
}

.page-home .hm-line__spec > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-home .hm-line__spec dt {
  font-size: .8rem;
  color: var(--sb-slate);
  letter-spacing: .02em;
}

.page-home .hm-line__spec dd {
  margin: 0;
  font-family: var(--sb-font-mono);
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--sb-ink);
  text-align: right;
}

.page-home .hm-line__desc {
  margin: 0;
  font-size: .95rem;
  line-height: 1.8;
  color: var(--sb-slate);
}

.page-home .hm-line__more {
  margin: 1rem 0 0;
  font-size: .9rem;
}

.page-home .hm-line__more a {
  color: var(--sb-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(226, 86, 26, .4);
  padding-bottom: 2px;
}

.page-home .hm-line__more a:hover {
  border-bottom-color: var(--sb-orange);
}

@media (min-width: 780px) {
  .page-home .hm-line__body {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
    gap: 2rem;
    align-items: start;
  }
}

.page-home .hm-capacity {
  position: relative;
  overflow: hidden;
}

.page-home .hm-capacity::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sb-hatch);
  pointer-events: none;
}

.page-home .hm-capacity > .sb-shell {
  position: relative;
  z-index: 1;
}

.page-home .hm-capacity .sb-section__head {
  margin-bottom: clamp(1.8rem, 3.4vw, 2.6rem);
}

.page-home .hm-capacity__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-home .hm-metric {
  position: relative;
  padding: 1.4rem 1.3rem 1.5rem;
  background: rgba(251, 246, 236, .05);
  border-left: 4px solid var(--sb-orange);
  clip-path: var(--sb-cut);
}

.page-home .hm-metric__num {
  display: block;
  font-size: clamp(2rem, 5.4vw, 3.1rem);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--sb-paper);
}

.page-home .hm-metric__unit {
  display: inline-block;
  margin: .5rem 0 .55rem;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--sb-cyan);
}

.page-home .hm-metric__label {
  display: block;
  font-size: .84rem;
  line-height: 1.6;
  color: var(--sb-steel);
}

.page-home .hm-gears {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
  margin: 0 0 2.2rem;
  padding: 0;
  list-style: none;
}

.page-home .hm-gear {
  padding: .75rem .6rem .85rem;
  background: rgba(251, 246, 236, .045);
  border-top: 2px solid var(--sb-cyan);
  clip-path: var(--sb-cut);
}

.page-home .hm-gear:nth-child(n+4) {
  background: rgba(251, 246, 236, .08);
}

.page-home .hm-gear:nth-child(n+7) {
  background: rgba(226, 86, 26, .2);
  border-top-color: var(--sb-orange-lt);
}

.page-home .hm-gear__code {
  display: block;
  font-family: var(--sb-font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--sb-amber);
}

.page-home .hm-gear__name {
  display: block;
  margin-top: .25rem;
  font-size: .7rem;
  line-height: 1.4;
  color: var(--sb-steel);
}

.page-home .hm-capacity__shot {
  position: relative;
  margin: 0;
}

.page-home .hm-capacity__shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 18 / 7;
  object-fit: cover;
  clip-path: var(--hm-frame);
  border: 1px solid rgba(47, 214, 198, .16);
}

.page-home .hm-capacity__caption {
  display: block;
  margin-top: .7rem;
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--sb-steel);
}

@media (min-width: 700px) {
  .page-home .hm-capacity__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 620px) {
  .page-home .hm-gears {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1020px) {
  .page-home .hm-gears {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}

.page-home .hm-flow {
  background: var(--sb-paper);
}

.page-home .hm-flow .sb-section__head {
  margin-bottom: clamp(1.8rem, 3.4vw, 2.6rem);
}

.page-home .hm-flow__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: hmstep;
}

.page-home .hm-step {
  position: relative;
  padding: 1.5rem 1.3rem 1.6rem;
  background: #fff;
  border-top: 3px solid var(--sb-deep);
  clip-path: var(--hm-frame);
  transition: transform .28s ease, border-top-color .28s ease;
}

.page-home .hm-step:hover {
  transform: translateY(-4px);
  border-top-color: var(--sb-orange);
}

.page-home .hm-step__no {
  display: block;
  margin-bottom: .6rem;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--sb-orange);
}

.page-home .hm-step__title {
  margin: 0 0 .6rem;
  font-family: var(--sb-font-display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--sb-ink);
}

.page-home .hm-step__text {
  margin: 0;
  font-size: .88rem;
  line-height: 1.78;
  color: var(--sb-slate);
}

@media (min-width: 720px) {
  .page-home .hm-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1060px) {
  .page-home .hm-flow__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.page-home .hm-cases {
  background: var(--sb-cream);
}

.page-home .hm-cases .sb-section__head {
  margin-bottom: clamp(1.8rem, 3.4vw, 2.6rem);
}

.page-home .hm-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 3.4vw, 2.8rem);
}

.page-home .hm-cases__figure {
  margin: 0;
}

.page-home .hm-cases__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  clip-path: var(--hm-frame-lg);
  border: 1px solid var(--sb-line-ink);
}

.page-home .hm-cases__cap {
  display: block;
  margin-top: .85rem;
  padding-left: .9rem;
  border-left: 3px solid var(--sb-cyan);
  font-size: .82rem;
  line-height: 1.7;
  color: var(--sb-slate);
}

.page-home .hm-cases__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .hm-case {
  padding: 1.15rem 0 1.25rem;
  border-bottom: 1px solid var(--sb-line-ink);
  transition: background .25s ease;
}

.page-home .hm-case:first-child {
  border-top: 1px solid var(--sb-line-ink);
}

.page-home .hm-case:hover,
.page-home .hm-case:focus-within {
  background: rgba(226, 86, 26, .05);
}

.page-home .hm-case__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem 1rem;
}

.page-home .hm-case__name {
  margin: 0;
  font-family: var(--sb-font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--sb-ink);
}

.page-home .hm-case__tag {
  flex: 0 0 auto;
}

.page-home .hm-case__before {
  margin: .6rem 0 0;
  font-size: .86rem;
  line-height: 1.72;
  color: var(--sb-slate);
}

.page-home .hm-case__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.3, .8, .3, 1);
}

.page-home .hm-case__body > div {
  overflow: hidden;
}

.page-home .hm-case:hover .hm-case__body,
.page-home .hm-case:focus-within .hm-case__body {
  grid-template-rows: 1fr;
}

.page-home .hm-case__after {
  margin: .75rem 0 0;
  padding-left: .9rem;
  border-left: 3px solid var(--sb-orange);
  font-size: .86rem;
  line-height: 1.74;
  color: var(--sb-ink);
}

@media (hover: none) {
  .page-home .hm-case__body {
    grid-template-rows: 1fr;
  }
}

@media (min-width: 960px) {
  .page-home .hm-cases__grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
    gap: 3rem;
  }
}

.page-home .hm-industry {
  background: var(--sb-deep-2);
  color: var(--sb-paper);
}

.page-home .hm-industry .sb-section__head {
  margin-bottom: clamp(1.8rem, 3.4vw, 2.6rem);
}

.page-home .hm-industry__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin: 0 0 2.2rem;
  padding: 0;
  list-style: none;
}

.page-home .hm-ind {
  display: block;
  padding: 1.2rem 1.05rem 1.3rem;
  background: rgba(251, 246, 236, .055);
  border-top: 2px solid rgba(47, 214, 198, .38);
  clip-path: var(--sb-cut);
  text-decoration: none;
  color: inherit;
  transition: background .26s ease, transform .26s ease, border-top-color .26s ease;
}

.page-home .hm-ind:hover,
.page-home .hm-ind:focus-visible {
  background: rgba(226, 86, 26, .28);
  border-top-color: var(--sb-orange-lt);
  transform: translateY(-4px);
}

.page-home .hm-ind__name {
  display: block;
  font-family: var(--sb-font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--sb-paper);
}

.page-home .hm-ind__desc {
  display: block;
  margin-top: .45rem;
  font-size: .8rem;
  line-height: 1.65;
  color: var(--sb-steel);
}

.page-home .hm-industry__more {
  margin: 0;
}

@media (min-width: 640px) {
  .page-home .hm-industry__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .page-home .hm-industry__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.page-home .hm-cta {
  position: relative;
  overflow: hidden;
  background: var(--sb-deep);
  color: var(--sb-paper);
}

.page-home .hm-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62%;
  height: 5px;
  background: linear-gradient(90deg, var(--sb-orange), var(--sb-cyan));
  opacity: .85;
}

.page-home .hm-cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 3.6vw, 3rem);
  align-items: start;
}

.page-home .hm-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.7rem;
}

.page-home .hm-cta__channels {
  margin: 0;
  display: grid;
  gap: .85rem;
}

.page-home .hm-cta__ch {
  padding: 1rem 1.15rem 1.05rem;
  background: rgba(251, 246, 236, .05);
  border-left: 3px solid var(--sb-cyan);
  clip-path: var(--sb-cut);
}

.page-home .hm-cta__ch--note {
  border-left-color: var(--sb-amber);
}

.page-home .hm-cta__ch dt {
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--sb-cyan);
}

.page-home .hm-cta__ch--note dt {
  color: var(--sb-amber);
}

.page-home .hm-cta__ch dd {
  margin: .5rem 0 0;
  font-size: .9rem;
  line-height: 1.72;
  color: rgba(251, 246, 236, .9);
  word-break: break-word;
}

.page-home .hm-cta__icp {
  position: relative;
  z-index: 1;
  margin: 2.6rem 0 0;
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--sb-steel);
}

@media (min-width: 920px) {
  .page-home .hm-cta__grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: 3.5rem;
  }
}
