:root {
  --engine-credit-blue: #68b5ff;
  --engine-credit-blue-deep: #2467a5;
}

.engine-hero-purchase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  max-width: 710px;
  margin-top: 28px;
}

.engine-hero-plan {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "label price" "detail price";
  align-items: center;
  gap: 6px 18px;
  min-height: 104px;
  padding: 18px 19px;
  border: 1px solid rgba(245, 220, 130, .28);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(216, 179, 79, .09), rgba(255, 255, 255, .025));
  color: #f8f6f4;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.engine-hero-plan:hover,
.engine-hero-plan:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(245, 220, 130, .68);
  background: linear-gradient(145deg, rgba(216, 179, 79, .16), rgba(255, 255, 255, .04));
  box-shadow: 0 24px 62px rgba(216, 179, 79, .12);
  outline: none;
}

.engine-hero-plan.recommended {
  border-color: rgba(245, 220, 130, .64);
  background: linear-gradient(145deg, rgba(245, 220, 130, .18), rgba(143, 103, 32, .08)), rgba(255, 255, 255, .02);
}

.engine-hero-plan span {
  grid-area: label;
  color: #f5dc82;
  font: 700 10px/1 "DM Sans", sans-serif;
  letter-spacing: .14em;
}

.engine-hero-plan b {
  grid-area: price;
  color: #fff0ad;
  font: 700 clamp(30px, 3vw, 44px)/.9 "Space Grotesk", sans-serif;
  letter-spacing: -.055em;
}

.engine-hero-plan small {
  grid-area: detail;
  color: #aaa3aa;
  font: 600 12px/1.35 "DM Sans", sans-serif;
}

.engine-hero-plan:disabled {
  opacity: .58;
  cursor: wait;
  transform: none;
}

.engine-hero-member {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: #807980;
  font-size: 12px;
}

.engine-hero-member a {
  color: #ddd7dd;
  font-weight: 700;
  text-decoration: none;
}

.engine-hero-member a:hover { color: #fff0ad; }

.engine-sales-kit-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.engine-sales-kit-card {
  min-width: 0;
  min-height: 224px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 15px;
  background: radial-gradient(circle at 100% 0, rgba(216, 179, 79, .11), transparent 16rem), rgba(255, 255, 255, .022);
}

.engine-sales-kit-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(245, 220, 130, .36);
  border-radius: 9px;
  color: #f5dc82;
  background: rgba(216, 179, 79, .08);
  font: 700 10px/1 "Space Grotesk", sans-serif;
}

.engine-sales-kit-card h3 {
  margin: 21px 0 10px;
  font: 700 22px/1.05 "Space Grotesk", sans-serif;
  letter-spacing: -.025em;
}

.engine-sales-kit-card p {
  margin: 0;
  color: #aaa3aa;
  font-size: 14px;
  line-height: 1.65;
}

.engine-credit-pack-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
  max-width: 900px;
  margin: 22px auto 4px;
  padding: 15px 17px;
  border: 1px solid rgba(104, 181, 255, .28);
  border-radius: 12px;
  background: rgba(104, 181, 255, .055);
  color: #aaa3aa;
  font-size: 13px;
  line-height: 1.5;
}

.engine-credit-pack-note b { color: #cfe8ff; }

.engine-credit-pack-link {
  width: 100%;
  margin-top: 12px;
  padding: 9px 10px;
  border: 1px solid rgba(104, 181, 255, .28);
  border-radius: 10px;
  background: rgba(104, 181, 255, .06);
  color: #b9dcff;
  font: 700 10px/1.25 "DM Sans", sans-serif;
  letter-spacing: .025em;
  cursor: pointer;
  transition: .18s ease;
}

.engine-credit-pack-link:hover,
.engine-credit-pack-link:focus-visible {
  border-color: rgba(104, 181, 255, .62);
  background: rgba(104, 181, 255, .12);
  color: #e4f2ff;
  outline: none;
}

.engine-credit-pack-link:disabled {
  opacity: .46;
  cursor: not-allowed;
}

@media (min-width: 1950px) {
  .engine-sales-kit-showcase { gap: 18px; }
  .engine-sales-kit-card { min-height: 250px; padding: 30px; }
}

@media (max-width: 980px) {
  .engine-sales-kit-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .engine-hero-purchase,
  .engine-sales-kit-showcase { grid-template-columns: 1fr; }
  .engine-hero-plan { min-height: 92px; }
  .engine-credit-pack-note { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .engine-hero-plan {
    grid-template-columns: 1fr auto;
    padding: 16px;
  }
  .engine-hero-plan b { font-size: 32px; }
  .engine-hero-member { align-items: flex-start; flex-direction: column; }
}
