/* Centered section heading (used by the pricing section) */
.section-head {
  margin: 0 auto 58px;
  text-align: center;
}

.section-title {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-copy {
  max-width: 620px;
  margin: 18px auto 0;
  color: #9b9b9b;
  font-size: 17px;
  line-height: 1.65;
}

/* pricing section adds extra bottom breathing room */
.sec--pricing {
  padding-bottom: 116px;
}

.pricing-wrap {
  max-width: 412px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 34px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(120% 78% at 50% -12%, rgba(67, 185, 106, 0.14) 0%, rgba(67, 185, 106, 0) 60%),
    #111;
  text-align: center;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.48),
    var(--shadow-pill);
}

/* hairline green accent along the card's top edge */
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(67, 185, 106, 0) 0%,
    rgba(109, 208, 146, 0.6) 50%,
    rgba(67, 185, 106, 0) 100%
  );
}

/* the two stacked CTAs inside the card get a 10px gap */
.price-card .btn + .btn {
  margin-top: 10px;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px 13px;
  border: 1px solid rgba(67, 185, 106, 0.3);
  border-radius: 999px;
  background: rgba(67, 185, 106, 0.1);
  color: var(--green-soft);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tier-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(67, 185, 106, 0.9);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.price {
  color: #fff;
  font-size: 78px;
  font-weight: 800;
  line-height: 1;
}

.once {
  color: #7a7a7a;
  font-family: var(--mono);
  font-size: 13px;
}

.price-copy {
  max-width: 300px;
  margin: 0 auto 26px;
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.6;
}

.price-foot {
  margin-top: 18px;
  color: #6f6f6f;
  font-family: var(--mono);
  font-size: 12px;
}

.pricing-logo {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 15px;
  box-shadow: none;
}

@media (max-width: 720px) {
  .section-title {
    font-size: 30px;
  }

  .price-card {
    padding: 28px 22px;
  }

  .price {
    font-size: 46px;
  }
}
