.materials-page {
  background:
    radial-gradient(circle at 82% 14%, rgba(122, 212, 159, 0.12), transparent 28%),
    linear-gradient(180deg, #06070b 0%, #0f1220 100%);
}

.materials-used-hero {
  min-height: calc(82vh - 110px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px 64px;
}

.materials-used-copy {
  max-width: 760px;
}

.materials-used-hero h1 {
  font-size: clamp(3.1rem, 5vw, 5.4rem);
}

.materials-used-lead {
  max-width: 680px;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.85;
}

.materials-used-visual {
  display: grid;
  place-items: center;
  min-height: 430px;
}

.material-stack {
  width: min(100%, 370px);
  padding: 42px;
  border: 1px solid rgba(122, 212, 159, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 16%, rgba(122, 212, 159, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.material-stack span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 86px;
  margin: 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  color: #081014;
  font-family: "Neofolia", serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.material-stack span:nth-child(1) {
  background: linear-gradient(135deg, #dff7ea, #9fe4bf);
}

.material-stack span:nth-child(2) {
  background: linear-gradient(135deg, #e6c97b, #b8e8c7);
}

.material-stack span:nth-child(3) {
  background: linear-gradient(135deg, #86c997, #3ca66e);
}

.materials-used-grid-section {
  padding: 90px 32px;
  background: #050712;
}

.materials-used-header {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.materials-used-header h2 {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.05;
}

.materials-used-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
}

.material-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.material-card h3 {
  margin: 20px 0 12px;
  font-size: 1.35rem;
}

.material-card p,
.materials-used-process p {
  color: var(--muted);
  line-height: 1.8;
}

.material-icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: rgba(122, 212, 159, 0.14);
  position: relative;
}

.material-icon::before,
.material-icon::after {
  content: "";
  position: absolute;
}

.fiber-icon::before {
  inset: 18px;
  border-radius: 50% 0 50% 0;
  background: #7ad49f;
  transform: rotate(35deg);
}

.starch-icon::before {
  inset: 18px;
  border-radius: 50%;
  border: 8px solid #b8e8c7;
}

.seed-icon::before {
  left: 22px;
  top: 15px;
  width: 30px;
  height: 44px;
  border-radius: 60% 40% 60% 40%;
  background: #e6c97b;
  transform: rotate(28deg);
}

.mineral-icon::before {
  left: 16px;
  top: 18px;
  width: 40px;
  height: 38px;
  clip-path: polygon(50% 0, 100% 34%, 82% 100%, 18% 100%, 0 34%);
  background: #b8e8c7;
}

.ink-icon::before {
  left: 19px;
  top: 18px;
  width: 36px;
  height: 42px;
  border-radius: 8px 8px 20px 20px;
  background: linear-gradient(180deg, #dff7ea, #7ad49f);
}

.soil-icon::before {
  left: 16px;
  right: 16px;
  bottom: 18px;
  height: 18px;
  border-radius: 999px;
  background: #6f8271;
}

.soil-icon::after {
  left: 34px;
  bottom: 34px;
  width: 6px;
  height: 28px;
  border-radius: 999px;
  background: #7ad49f;
}

.materials-used-process {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 28px;
  align-items: center;
  max-width: 1120px;
  margin: 64px auto;
  padding: 44px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
}

.materials-used-process h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

@media (max-width: 1100px) {
  .materials-used-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .materials-used-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .materials-used-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .materials-used-hero,
  .materials-used-grid-section,
  .materials-used-process {
    padding-left: 20px;
    padding-right: 20px;
  }

  .materials-used-hero {
    min-height: auto;
    gap: 32px;
  }

  .materials-used-hero h1 {
    font-size: 2.8rem;
  }

  .materials-used-visual {
    min-height: 320px;
  }

  .material-stack {
    padding: 26px;
  }

  .materials-used-grid {
    grid-template-columns: 1fr;
  }

  .material-card {
    padding: 24px;
  }
}
