.main-hero {
  height: 100vh;
  min-height: 720px;
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #091c52;
}
.main-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/main/hero.png") center/cover;
  animation: hero-zoom 16s ease-out both;
}
.main-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(4 10 27/0.18), rgb(4 10 27/0.44));
}
.main-hero-content {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header);
}
.main-hero .eyebrow {
  color: #fff;
}
.main-hero h1 {
  margin: 26px 0 0;
  font:
    400 clamp(64px, 7.5vw, 120px) / 1.16 "Inter",
    sans-serif;
  letter-spacing: -0.055em;
}
.main-hero h1 span {
  display: block;
  white-space: nowrap;
}
.main-hero-copy {
  margin: 40px 0 0;
  max-width: 760px;
  font-size: 20px;
}
.scroll-label {
  position: absolute;
  bottom: 0;
  font:
    11px "Inter",
    sans-serif;
  letter-spacing: 0.14em;
}
.scroll-label:after {
  content: "";
  display: block;
  width: 1px;
  height: 54px;
  margin: 12px auto 0;
  background: #fff;
}
@keyframes hero-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
.manifesto {
  padding: 240px 0;
  border-bottom:1px solid var(--line);
}
.manifesto-grid {
  display: block;
}
.manifesto-grid > div {
  width: 780px;
  max-width: 100%;
  margin: 65px 0 0 auto;
}
.manifesto-grid > div .body-copy:first-child,
.manifesto-lead {
  width: 620px;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: 24px !important;
  font-weight: 600;
  line-height: 1.6;
}
.manifesto-grid > div .body-copy + .body-copy {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.6;
}
.manifesto .display-title {
  font-size: 76px;
}
.manifesto .display-title b {
  color: var(--brand);
}
.main-title-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.main-title-row .display-title {
  margin-top: 0;
}
.business-grid {
  margin-top: 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.business-card figure {
  margin: 0;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.business-card figure:before {
  content: attr(data-index);
  position: absolute;
  left: 22px;
  top: 20px;
  z-index: 1;
  color: #fff;
  font:
    600 14px "Inter",
    sans-serif;
}
.business-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.business-card:hover img {
  transform: scale(1.045);
}
.business-card h3 {
  margin: 28px 0 0;
  font:
    500 32px "Inter",
    sans-serif;
}
.business-card p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.solutions {
  padding-top: 200px;
  border-top: 1px solid var(--line);
}
.solutions-head {
  padding-bottom: 110px;
}
.solution-list {
  height: 800px;
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.solution-panel {
  flex: 1;
  position: relative;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition:
    flex 0.45s,
    color 0.35s;
}
.solution-panel:last-child {
  border: 0;
}
.solution-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgb(9 28 82/0.15), rgb(9 28 82/0.86)),
    url("../images/main/solution.png") center/cover;
  opacity: 0;
  transition: opacity 0.4s;
}
.solution-panel-01:before {
  background:
    linear-gradient(rgb(9 28 82/0.15), rgb(9 28 82/0.86)),
    url("../images/main/solution01.png") center/cover;
}
.solution-panel-02:before {
  background:
    linear-gradient(rgb(9 28 82/0.15), rgb(9 28 82/0.86)),
    url("../images/main/solution02.png") center/cover;
}
.solution-panel-03:before {
  background:
    linear-gradient(rgb(9 28 82/0.15), rgb(9 28 82/0.86)),
    url("../images/main/solution03.png") center/cover;
}
.solution-panel-04:before {
  background:
    linear-gradient(rgb(9 28 82/0.15), rgb(9 28 82/0.86)),
    url("../images/main/solution04.png") center/cover;
}
.solution-panel > * {
  position: relative;
  z-index: 1;
}
.solution-panel > span {
  color: #c9c9c9;
  font:
    600 20px "Inter",
    sans-serif;
}
.solution-panel h3 {
  margin: 80px 0 0;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.15;
}
.solution-panel p,
.solution-panel a {
  position: absolute;
  left: 28px;
  right: 28px;
  color: #fff;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.35s;
}
.solution-panel p {
  bottom: 88px;
  font-size: 17px;
}
.solution-panel a {
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.solution-panel.is-active,
.solution-panel:hover {
  flex: 1.36;
  color: #fff;
}
.solution-panel.is-active:before,
.solution-panel.is-active p,
.solution-panel.is-active a,
.solution-panel:hover:before,
.solution-panel:hover p,
.solution-panel:hover a {
  opacity: 1;
  transform: none;
}
.zerosum-feature {
  min-height: 1080px;
  color: #fff;
  background:
    linear-gradient(90deg, rgb(9 28 82/0.92), rgb(9 28 82/0.25)),
    url("../images/main/zerosum.png") center/cover;
  display: flex;
  align-items: center;
}
.zerosum-copy {
  max-width: 780px;
}
.zerosum-copy .eyebrow {
  color: #d7e0f8;
}
.zerosum-copy h2 {
  font-size: clamp(52px, 4.6vw, 88px);
}
.zerosum-specs {
  display: flex;
  gap: 25px;
  margin-top: 60px;
}
.zerosum-specs > div {
  width: 180px;
  padding-left: 21px;
  border-left: 1px solid rgb(255 255 255 / 0.35);
}
.zerosum-specs > div:last-child {
  border-right: 1px solid rgb(255 255 255 / 0.35);
}
.zerosum-specs strong,
.zerosum-specs span {
  display: block;
}
.zerosum-specs strong {
  font: 700 42px/1.4 "Inter", sans-serif;
}
.zerosum-specs span {
  font-size: 16px;
  line-height: 1.2;
}
.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 34px;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
}
.product-go {
  display: inline-grid;
  flex: none;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font: 400 18px/1 "Inter", sans-serif;
  font-style: normal;
  transition:
    color 0.25s,
    background-color 0.25s,
    transform 0.25s ease;
}
a:hover .product-go {
  transform: rotate(45deg);
}
.product-go img {
  width: 18px;
  height: 18px;
  max-width: none;
}
.solution-panel .product-go {
  background: var(--brand);
}
.zerosum-feature .product-go,
.main-inquiry .product-go {
  background: #fff;
  color: var(--brand);
}
.zerosum-feature .product-go img,
.main-inquiry .product-go img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(42%) saturate(3300%) hue-rotate(207deg) brightness(82%)
    contrast(105%);
}
.project-section {
  background: var(--soft);
}
.project-section .main-title-row {
  grid-template-columns: minmax(0, 625.33fr) minmax(0, 875.47fr);
  column-gap: 10.6667%;
  align-items: end;
}
.project-section .main-title-row .eyebrow {
  line-height: 1.28;
}
.project-section .main-title-row .display-title {
  margin-top: 24px;
  line-height: 1.18;
}
.project-section .main-title-row > .body-copy {
  width: 100%;
  max-width: 560px;
  margin: 0;
  justify-self: start;
  align-self: end;
}
.project-grid {
  margin-top: 110px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 360px;
}
.project-card:first-child {
  grid-row: span 2;
  min-height: 760px;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.project-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.3);
  pointer-events: none;
}
.project-card:hover img {
  transform: scale(1.035);
}
.project-caption {
  position: absolute;
  inset: auto 28px 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  width: calc(100% - 56px);
  color: #fff;
}
.project-caption span {
  grid-column: 1;
  font:
    12px "Inter",
    sans-serif;
  letter-spacing: 0.08em;
}
.project-caption h3 {
  grid-column: 1;
  margin: 8px 0 0;
  font-size: 28px;
  font-weight: 500;
}
.project-caption b {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  font: 700 13px/1.2 "Inter", sans-serif;
}
#store .main-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
#store .main-title-row > div {
  flex: 0 1 450.14px;
  min-width: 0;
}
#store .main-title-row .eyebrow {
  line-height: 1.28;
}
#store .main-title-row .display-title {
  margin-top: 24px;
  line-height: 1.18;
}
#store .main-title-row .circle-link {
  flex: none;
}
.store-list {
  margin-top: 110px;
  border-top: 1px solid var(--line);
}
.product-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 680px) 1fr 180px 52px;
  align-items: center;
  gap: 28px;
  min-height: 158px;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.25s;
}
.product-row:hover {
  background: #eef2fa;
}
.product-row > span {
  font-family: "Inter", sans-serif;
  color: #aaa;
}
.product-copy h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}
.product-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.2;
}
.product-row > img {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: var(--radius);
  background: var(--soft);
  object-fit: cover;
}
.product-row .product-go img {
  grid-column: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  object-fit: contain;
}
.product-row strong {
  text-align: right;
  font-family: "Inter", sans-serif;
}

.main-inquiry {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.inquiry-panel {
  min-height: 480px;
  padding: 130px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.inquiry-panel:first-child {
  background:
    linear-gradient(rgb(9 28 82/0.78), rgb(9 28 82/0.78)),
    url("../images/main/solution.png") center/cover;
}
.inquiry-panel:last-child {
  background: var(--brand);
}
.inquiry-panel .eyebrow {
  color: #d7e0f8;
}
.inquiry-panel h2 {
  margin: 22px 0 0;
  font-size: 46px;
  line-height: 1.25;
}
.inquiry-panel p {
  font-size: 15px;
  font-weight:500;
  color: rgb(255 255 255/0.74);
}
@media (max-width: 1100px) {
  .manifesto-grid,
  .main-title-row {
    grid-template-columns: 1fr;
  }
  #space .main-title-row {
    gap: 24px;
  }
  .project-section .main-title-row {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 40px);
    align-items: start;
  }
  .project-section .main-title-row > .body-copy {
    justify-self: start;
    align-self: start;
  }
  .manifesto .display-title {
    font-size: clamp(46px, 5vw, 54px);
  }
  .solutions-head .display-title,
  .project-section .display-title,
  #store .display-title {
    font-size: clamp(42px, 4.8vw, 52px);
  }
  .solution-panel h3 {
    font-size: 30px;
  }
  .solution-panel p {
    font-size: 16px;
  }
  .product-copy h3 {
    font-size: 20px;
  }
  .product-copy p {
    font-size: 14px;
  }
  .inquiry-panel h2 {
    font-size: 40px;
  }
  .solution-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .solution-panel {
    min-height: 430px;
  }
  .solution-panel:before,
  .solution-panel p,
  .solution-panel a {
    opacity: 1;
    transform: none;
  }
  .solution-panel {
    color: #fff;
  }
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-card:first-child {
    grid-column: 1/-1;
    grid-row: auto;
    min-height: 600px;
  }
  .product-row {
    grid-template-columns: 70px 1.5fr 1fr 150px 48px;
  }
}
@media (max-width: 767px) {
  #store .main-title-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  #store .main-title-row .circle-link {
    justify-self: start;
  }
  br.d-none {
    display:none;
  }
  .main-hero {
    min-height: 650px;
  }
  .main-hero h1 {
    font-size: 22px;
  }
  .main-hero-copy {
    width: 88%;
    font-size: 13px;
  }
  .manifesto {
    padding: 96px 0;
  }
  .manifesto .display-title {
    font-size: 20px;
  }
  .manifesto-grid > div {
    margin-top: 36px;
  }
  .manifesto-grid > div .body-copy:first-child,
  .manifesto-lead {
    font-size: 16px !important;
  }
  .manifesto-grid > div .body-copy + .body-copy {
    font-size: 15px;
  }
  .business-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
    gap: 54px;
  }
  .business-card figure {
    aspect-ratio: 1.15;
  }
  .solutions {
    padding-top: 96px;
  }
  .solutions-head {
    padding-bottom: 58px;
  }
  .solution-list {
    display: block;
  }
  .solution-panel {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .zerosum-feature {
    min-height: 760px;
  }
  .zerosum-specs {
    width: 100%;
    gap: 0;
    margin-top: 44px;
  }
  .zerosum-specs > div {
    width: 33.333%;
    padding-left: 12px;
  }
  .zerosum-specs strong {
    font-size: 26px;
  }
  .zerosum-specs span {
    font-size: 13px;
  }
  .project-grid {
    display: block;
    margin-top: 58px;
  }
  .project-card,
  .project-card:first-child {
    min-height: auto;
    height: 320px;
  }
  .project-card + .project-card {
    margin-top: 18px;
  }
  .store-list {
    margin-top: 58px;
  }
  .product-row {
    grid-template-columns: 40px 1fr 44px;
    gap: 12px;
    padding: 22px 0;
  }
  .product-copy {
    min-width: 0;
  }
  .product-copy h3 {
    font-size: 16px;
    word-break: keep-all;
  }
  .product-copy p {
    font-size: 14px;
    word-break: keep-all;
  }
  .product-row > img {
    grid-column: 2;
    width: 160px;
    height: 160px;
  }
  .product-row strong {
    grid-column: 2;
    text-align: left;
  }
  .product-row .product-go {
    grid-column: 3;
    grid-row: 1;
  }
  .main-inquiry {
    grid-template-columns: 1fr;
  }
  .inquiry-panel {
    min-height: 380px;
    padding: 76px 5vw;
  }
  .inquiry-panel h2 {
    font-size: 18px;
  }
}
.circle-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 16px;
  font-weight: 600;
}









/* Compact mobile rhythm */
@media (max-width: 767px) {
  .main-hero {
    min-height: 560px;
  }
  .main-hero .eyebrow {
    font-size: 10px;
  }
  .main-hero h1 {
    margin-top: 12px;
    font-size: 22px;
    line-height: 1.2;
  }
  .main-hero-copy {
    margin-top: 14px;
    font-size: 13px;
  }
  .manifesto {
    padding: 56px 0;
  }
  .manifesto .display-title,
  #space .display-title,
  .solutions-head .display-title,
  .zerosum-copy .display-title,
  .zerosum-copy h2,
  .project-section .display-title,
  #store .display-title {
    font-size: 20px;
    line-height: 1.3;
  }
  .project-section .main-title-row .display-title,
  #store .main-title-row .display-title {
    margin-top: 12px;
  }
  .manifesto-grid > div {
    margin-top: 20px;
  }
  .manifesto-grid > div .body-copy:first-child,
  .manifesto-lead {
    font-size: 16px !important;
  }
  .manifesto-grid > div .body-copy + .body-copy,
  .main-title-row .body-copy,
  .zerosum-copy .body-copy {
    font-size: 15px;
  }
  .business-grid {
    margin-top: 32px;
    gap: 32px;
  }
  .business-card h3 {
    margin-top: 18px;
    font-size: 16px;
  }
  .business-card p {
    font-size: 15px;
  }
  .solutions {
    padding-top: 56px;
  }
  .solutions-head {
    padding-bottom: 32px;
  }
  .solution-panel {
    min-height: 280px;
    padding: 28px 6vw;
  }
  .solution-panel > span {
    font-size: 13px;
  }
  .solution-panel h3 {
    font-size: 17px;
    margin: 0;
  }
  .solution-panel p {
    font-size: 15px;
  }
  .solution-panel a {
    font-size: 14px;
  }
  .text-link,
  .circle-link {
    gap: 8px;
    font-size: 14px;
  }
  .zerosum-feature {
    min-height: 560px;
  }
  .zerosum-specs {
    margin-top: 28px;
  }
  .zerosum-specs strong {
    font-size: 16px;
  }
  .zerosum-specs span {
    font-size: 12px;
  }
  .project-grid,
  .store-list {
    margin-top: 32px;
  }
  .project-card,
  .project-card:first-child {
    height: 240px;
  }
  .project-card + .project-card {
    margin-top: 12px;
  }
  .project-caption h3 {
    font-size: 15px;
  }
  #space .main-title-row {
    gap: 12px;
  }
  #store .main-title-row {
    gap: 16px;
  }
  .product-row {
    grid-template-columns: minmax(0, 1fr) 44px;
    grid-template-areas:
      "image action"
      "copy copy"
      "price price";
    column-gap: 12px;
    row-gap: 14px;
    align-items: start;
    padding: 22px 0;
  }
  .product-row > span {
    display: none;
  }
  .product-copy {
    grid-area: copy;
    text-align: left;
  }
  .product-copy h3 {
    margin: 0;
    font-size: 16px;
  }
  .product-copy p {
    font-size: 14px;
  }
  .product-row > img {
    grid-area: image;
    justify-self: start;
    width: 180px;
    height: 180px;
    margin: 0;
  }
  .product-row strong {
    grid-area: price;
    justify-self: start;
    font-size: 16px;
    text-align: left;
  }
  .product-row .product-go {
    grid-area: action;
    justify-self: end;
    align-self: start;
  }
  .inquiry-panel {
    min-height: 280px;
    padding: 44px 5vw;
  }
  .inquiry-panel h2 {
    margin-top: 14px;
    font-size: 18px;
  }
  .inquiry-panel > p:not(.eyebrow) {
    font-size: 14px;
  }
}
