.price {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-block: clamp(120px, 18vh, 196px);
  background: var(--tone-light);
  color: var(--ink);
  text-align: center;
}

.price__inner {
  position: relative;
  z-index: 2;
}

.price__eyebrow {
  margin: 0 0 38px;
  color: var(--muted);
}

.price__statement {
  margin: 0;
  color: var(--accent);
}

.price__promise {
  max-width: 40ch;
  margin: 36px auto 0;
}

.price__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 920px;
  margin: clamp(70px, 9vw, 112px) auto 0;
  text-align: left;
}

.price__card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-m);
  background: var(--surface);
}

.price__tier {
  margin: 0;
}

.price__amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 30px 0 0;
  color: var(--ink-strong);
  font-family: var(--font-serif);
  font-weight: 400;
}

.price__amount span {
  font-size: clamp(42px, 2rem + 2.8vw, 70px);
  line-height: 1;
}

.price__amount small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price__facts {
  display: grid;
  gap: 0;
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price__fact {
  min-height: 50px;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.45;
}

.price__actions {
  margin-top: auto;
  padding-top: 38px;
}

.price__button-wrap {
  display: flex;
}

.price__button {
  width: 100%;
}

.price__custom {
  max-width: 62ch;
  margin: 58px auto 0;
}

.price__custom a {
  color: var(--ink);
  text-decoration-color: var(--line-strong);
  text-underline-offset: 0.2em;
}

.price__comparison {
  max-width: 76ch;
  margin: 34px auto 0;
  padding-top: 25px;
  border-top: 3px double var(--line-strong);
  color: var(--muted);
  line-height: 1.7;
}

.price__mist {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.price__mist span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}

.price__mist span:first-child {
  top: -24%;
  left: -20%;
  width: 74vw;
  height: 62vh;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--line-strong) 34%, transparent),
    transparent 72%
  );
  animation: price-mist-one 126s linear infinite alternate;
}

.price__mist span:last-child {
  right: -22%;
  bottom: -28%;
  width: 76vw;
  height: 64vh;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--accent) 5%, transparent),
    transparent 74%
  );
  animation: price-mist-two 104s linear infinite alternate;
}

@keyframes price-mist-one {
  to {
    transform: translate(12vw, 7vh);
  }
}

@keyframes price-mist-two {
  to {
    transform: translate(-11vw, -6vh);
  }
}

@media (max-width: 760px) {
  .price {
    min-height: auto;
    padding-block: 108px;
  }

  .price__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    text-align: left;
  }
}
