#growth {
  overflow:hidden;
  background:
    linear-gradient(120deg,rgba(95,233,219,.055),transparent 42%),
    linear-gradient(180deg,rgba(10,16,36,.28),rgba(7,9,18,.72));
}
#growth::before {
  content:"ZERO / ONE";
  position:absolute;
  top:18px;
  right:-.02em;
  color:rgba(255,255,255,.025);
  font:600 clamp(5rem,15vw,13rem)/1 "Cormorant Garamond",serif;
  letter-spacing:-.05em;
  pointer-events:none;
}
.growth-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1px;
  margin-top:46px;
  border:1px solid var(--line2);
  background:var(--line2);
}
.growth-card {
  min-height:260px;
  padding:28px 25px;
  background:linear-gradient(150deg,rgba(20,28,60,.94),rgba(8,12,26,.98));
}
.growth-card span {
  display:block;
  margin-bottom:36px;
  color:var(--teal);
  font-size:.67rem;
  font-weight:700;
  letter-spacing:.14em;
}
.growth-card h3 {
  margin:0 0 13px;
  color:var(--text);
  font-size:clamp(1.18rem,1.8vw,1.55rem);
  line-height:1.45;
}
.growth-card p { margin:0; color:var(--muted); font-size:.83rem; line-height:1.85; }
.growth-proof {
  max-width:760px;
  margin:28px 0 0 auto;
  padding:18px 0 0 34px;
  border-top:1px solid var(--line2);
  color:var(--muted);
  font-size:.82rem;
  line-height:1.85;
}
@media(max-width:880px) {
  .growth-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .growth-card { min-height:220px; }
}
@media(max-width:560px) {
  .growth-grid { grid-template-columns:1fr; margin-top:30px; }
  .growth-card { min-height:0; padding:22px 20px; }
  .growth-card span { margin-bottom:18px; }
  .growth-proof { padding-left:0; }
}
