.strategy-hero {
  position: relative;
  display: grid;
  min-height: 76vh;
  align-items: end;
  overflow: hidden;
  background: var(--coal);
}

.strategy-hero picture,
.strategy-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.strategy-hero img {
  object-fit: cover;
  opacity: 0.72;
}

.strategy-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 14, 12, 0.86), rgba(8, 14, 12, 0.46) 58%, rgba(8, 14, 12, 0.14)),
    linear-gradient(0deg, rgba(8, 14, 12, 0.64), rgba(8, 14, 12, 0.04));
}

.strategy-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 940px;
  padding: 132px clamp(22px, 6vw, 76px) 76px;
  color: var(--white);
}

.strategy-hero-copy h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
}

.strategy-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.85;
  font-weight: 800;
}

.main-entry-section {
  padding: 88px clamp(22px, 6vw, 76px);
  background: var(--paper);
}

.entry-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 36px auto 0;
}

.entry-card {
  overflow: hidden;
  min-height: 440px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(17, 24, 22, 0.08);
}

.entry-card picture,
.entry-card img {
  display: block;
  width: 100%;
  height: 230px;
}

.entry-card img {
  object-fit: cover;
}

.entry-card div {
  padding: 22px;
}

.entry-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.entry-card h3 {
  margin: 10px 0 12px;
  color: var(--forest);
  font-size: 24px;
}

.entry-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 800;
}

.platform-positioning .visual-copy p {
  line-height: 1.9;
}

.equipment-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 28px auto;
}

.equipment-table div {
  min-height: 98px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.equipment-table strong,
.equipment-table span {
  display: block;
}

.equipment-table strong {
  color: var(--forest);
  font-size: 14px;
}

.equipment-table span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.asset-flow-section .wide-story-image,
.section-visual {
  display: block;
  max-width: 1180px;
  margin: 34px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 24, 22, 0.08);
}

.wide-story-image img,
.section-visual img {
  display: block;
  width: 100%;
  height: min(52vw, 560px);
  object-fit: cover;
}

.section-visual figcaption,
.inline-visual figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  background: var(--white);
}

.inline-visual {
  overflow: hidden;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.inline-visual img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.asset-flow-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.asset-flow-steps li {
  min-height: 132px;
  padding: 18px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.asset-flow-steps strong,
.asset-flow-steps span {
  display: block;
}

.asset-flow-steps strong {
  color: var(--forest);
  font-size: 16px;
}

.asset-flow-steps span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.asset-page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--coal);
}

.asset-page-hero picture,
.asset-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.asset-page-hero img {
  object-fit: cover;
  opacity: 0.76;
}

.asset-page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 14, 12, 0.88), rgba(8, 14, 12, 0.48) 58%, rgba(8, 14, 12, 0.12)),
    linear-gradient(0deg, rgba(8, 14, 12, 0.54), rgba(8, 14, 12, 0.06));
}

.asset-page-copy {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding: 132px clamp(22px, 6vw, 76px) 76px;
  color: var(--white);
}

.asset-page-copy h1 {
  color: var(--white);
}

.asset-page-copy p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.88);
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.visual-split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.visual-split picture,
.visual-split img,
.gallery-grid img {
  display: block;
  width: 100%;
}

.visual-split img {
  height: min(42vw, 460px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.benefit-grid article {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-grid strong {
  display: block;
  color: var(--forest);
  font-size: 18px;
}

.benefit-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 34px auto 0;
}

.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.gallery-grid img {
  height: 240px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .entry-card-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asset-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .strategy-hero-copy,
  .asset-page-copy {
    padding: 76px 20px 48px;
  }

  .strategy-hero-copy h2 {
    font-size: 38px;
  }

  .entry-card-grid,
  .benefit-grid,
  .gallery-grid,
  .visual-split,
  .visual-split.reverse {
    grid-template-columns: 1fr;
  }

  .entry-card {
    min-height: auto;
  }

  .wide-story-image img,
  .section-visual img,
  .visual-split img {
    height: 280px;
  }

  .asset-flow-steps {
    grid-template-columns: 1fr;
  }
}
