.hero {
  min-height: 680px;
  padding: 80px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 8vw;
  align-items: center;
  background: linear-gradient(
    110deg,
    rgba(245, 153, 198, 0.27) 0 50%,
    rgba(255, 234, 136, 0.23) 50% 80%,
    rgba(125, 204, 173, 0.16) 80% 95%,
    rgba(77, 103, 135, 0.08) 95%
  );
}
.hero h1 {
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -5px;
  margin: 18px 0 28px;
}
.hero h1 span {
  color: #bf5689;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  max-width: 610px;
  color: #4e5964;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}
.text-link {
  text-decoration: none;
  font-weight: 700;
}
.text-link span {
  color: #bf5689;
}
.microcopy {
  font-size: 12px;
  color: var(--muted);
  margin: 15px 0;
}
.signal-preview {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(77, 103, 135, 0.2);
  transform: rotate(1deg);
}
.preview-top,
.asset-row,
.metrics {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.preview-top {
  font-size: 12px;
  color: var(--muted);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.live-dot:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 7px;
}
.asset-row {
  padding: 24px 0;
}
.asset-row div {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
}
.asset-row small {
  grid-column: 2;
  color: var(--muted);
}
.asset-icon {
  grid-row: 1/3;
  display: grid;
  place-items: center;
  background: var(--yellow);
  width: 32px;
  height: 32px;
  border-radius: 10px;
}
.trend {
  background: rgba(125, 204, 173, 0.24);
  color: #32735a;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 12px;
}
.chart {
  height: 160px;
  display: flex;
  align-items: flex-end;
  gap: 5%;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.bar {
  width: 8%;
  background: rgba(245, 153, 198, 0.26);
  border-radius: 7px 7px 0 0;
}
.b1 {
  height: 28%;
}
.b2 {
  height: 45%;
}
.b3 {
  height: 38%;
}
.b4 {
  height: 62%;
}
.b5 {
  height: 50%;
}
.b6 {
  height: 72%;
}
.b7 {
  height: 67%;
}
.b8 {
  height: 90%;
}
.chart-line {
  position: absolute;
  left: 3%;
  right: 3%;
  top: 47%;
  border-top: 3px solid var(--pink);
  transform: rotate(-11deg);
  border-radius: 50%;
}
.metrics {
  padding: 22px 0;
}
.metrics div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.metrics small {
  color: var(--muted);
}
.insight {
  background: #f8f5ee;
  border-radius: 14px;
  padding: 16px;
}
.insight span {
  font-size: 11px;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 700;
}
.insight p {
  font-size: 13px;
  margin: 7px 0 0;
  line-height: 1.5;
}
.trust-strip {
  min-height: 84px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  background: var(--yellow);
  font-weight: 700;
  font-size: 13px;
}
.nft-marketplace { background: rgba(125, 204, 173, 0.1); }
.nft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.nft-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 15px 45px rgba(77,103,135,.09); }
.nft-card img, .nft-placeholder { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.nft-placeholder { display: grid; place-items: center; background: linear-gradient(135deg,var(--pink),var(--yellow)); font-size: 38px; font-weight: 800; }
.nft-card > div:last-child { padding: 24px; }
.nft-card h3 { margin: 0 0 10px; font-size: 22px; }
.nft-card p, .nft-card small, .nft-empty { color: var(--muted); }
.section {
  padding: 110px clamp(24px, 7vw, 110px);
}
.section-heading {
  max-width: 650px;
}
.section h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -2px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 55px;
}
.steps article {
  padding: 30px;
  border-top: 3px solid var(--pink);
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
}
.steps article:nth-child(2) {
  border-color: var(--yellow);
}
.steps article:nth-child(3) {
  border-color: var(--green);
}
.steps article > span {
  font-size: 12px;
  color: var(--muted);
}
.steps h3 {
  font-size: 23px;
  margin-top: 38px;
}
.steps p {
  line-height: 1.65;
  color: var(--muted);
}
.plan-callout {
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.plan-callout div {
  max-width: 680px;
}
.plan-callout p:last-child {
  margin-bottom: 0;
}
@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }
  .hero h1 {
    letter-spacing: -3px;
  }
  .signal-preview {
    transform: none;
  }
  .trust-strip {
    flex-wrap: wrap;
    gap: 20px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .nft-grid { grid-template-columns: 1fr; }
  .plan-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}
