:root {
  --indigo: #7c6cf0;
  --indigo-dim: #7c6cf01f;
  --indigo-glow: #7c6cf040;
  --font-display: "Playfair Display", serif;
  --font-mono: "Overpass Mono", monospace;
  --font-sans: "Mulish", sans-serif;
}

.plans-hero {
  background: var(--bg-primary);
  text-align: center;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.plans-hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(70% 50% at 50% 0, #7c6cf017 0%, #0000 65%);
  position: absolute;
  inset: 0;
}

.plans-hero__label {
  font-family: var(--font-mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 1.25rem;
  font-size: 9px;
  display: block;
}

.plans-hero__headline {
  font-family: var(--font-display);
  color: var(--text-primary);
  letter-spacing: -.02em;
  margin: 0 0 1.25rem;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
}

.plans-hero__headline em {
  color: var(--indigo);
  font-style: italic;
  font-weight: 400;
}

.plans-hero__sub {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
}

.beta-banner {
  background: var(--indigo-dim);
  border: 1px solid #7c6cf040;
  border-radius: 6px;
  align-items: center;
  gap: .75rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  padding: 1rem 1.5rem;
  display: inline-flex;
}

.beta-banner__dot {
  background: var(--indigo);
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  animation: 2s ease-in-out infinite betaPulse;
}

@keyframes betaPulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.beta-banner__text {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.5;
}

.beta-banner__text strong {
  color: var(--indigo);
  font-weight: 600;
}

.plans-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  display: grid;
}

@media (width <= 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
}

.plan-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 8px;
  flex-direction: column;
  padding: 2rem 1.75rem;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  border-color: #7c6cf059;
  box-shadow: 0 0 30px #7c6cf012;
}

.plan-card--featured {
  background: linear-gradient(160deg, #7c6cf00f 0%, var(--bg-card) 60%);
  border-color: #7c6cf073;
}

.plan-card--featured:before {
  content: "most popular";
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--indigo);
  border-bottom-left-radius: 6px;
  padding: 3px 10px 3px 12px;
  font-size: 8px;
  position: absolute;
  top: 0;
  right: 0;
}

.plan-card__tier {
  font-family: var(--font-mono);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: .75rem;
  font-size: 9px;
}

.plan-card__name {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: .35rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.plan-card__tagline {
  font-family: var(--font-sans);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.5;
}

.plan-card__price-block {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
}

.plan-card__price {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.plan-card__price sup {
  vertical-align: top;
  margin-top: .5rem;
  font-size: 1.25rem;
  font-weight: 400;
  display: inline-block;
}

.plan-card__price-note {
  font-family: var(--font-mono);
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-top: .35rem;
  font-size: 9px;
  display: block;
}

.plan-card__features {
  flex-direction: column;
  flex: 1;
  gap: .65rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  display: flex;
}

.plan-card__feature {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
}

.plan-card__feature i {
  color: var(--indigo);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: .75rem;
}

.plan-card__feature--dim i {
  color: var(--text-muted);
  opacity: .5;
}

.plan-card__feature--dim {
  opacity: .5;
}

.plan-card__cta {
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: .08em;
  border-radius: 4px;
  margin-top: auto;
  padding: .7rem 1.25rem;
  font-size: 11px;
  text-decoration: none;
  transition: all .15s;
  display: block;
}

.plan-card__cta--filled {
  background: var(--indigo);
  color: #fff;
}

.plan-card__cta--filled:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.plan-card__cta--outline {
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.plan-card__cta--outline:hover {
  color: var(--indigo);
  border-color: #7c6cf066;
}

.compare-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 1rem;
}

.compare-table th, .compare-table td {
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
  padding: .85rem 1rem;
  font-size: .82rem;
  font-weight: 300;
}

.compare-table th {
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-card);
  font-size: 9px;
  font-weight: 400;
}

.compare-table th:not(:first-child), .compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table td:first-child {
  color: var(--text-secondary);
}

.compare-table td:not(:first-child) {
  color: var(--text-primary);
}

.compare-table tr:hover td {
  background: #7c6cf006;
}

.compare-table td.check {
  color: var(--indigo);
  font-size: 1rem;
}

.compare-table td.dash {
  color: var(--text-muted);
  font-size: .9rem;
}

.compare-table th.featured-col {
  color: var(--indigo);
}

.faq-list {
  border: 1px solid var(--border);
  border-radius: 6px;
  flex-direction: column;
  gap: 0;
  display: flex;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__q {
  font-family: var(--font-display);
  color: var(--text-primary);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
}

.faq-item__q:after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--indigo);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.faq-item__a {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  padding: 0 1.25rem 1.1rem;
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.75;
  display: none;
}

.faq-item.open .faq-item__a {
  display: block;
}

.faq-item.open .faq-item__q:after {
  content: "−";
}

.section-header {
  margin-bottom: 3rem;
}

.section-header__title {
  font-family: var(--font-display);
  color: var(--text-primary);
  letter-spacing: -.01em;
  margin: .5rem 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}

.section-header__sub {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  margin: 0;
  font-size: .9rem;
  font-weight: 300;
}

.section-label {
  font-family: var(--font-mono);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--indigo);
  font-size: 9px;
  display: block;
}

.btn-studio {
  font-family: var(--font-mono);
  letter-spacing: .08em;
  background: var(--indigo);
  color: #fff;
  border-radius: 4px;
  padding: .65rem 1.4rem;
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
  display: inline-block;
}

.btn-studio:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transition: opacity .55s, transform .55s;
  transform: translateY(18px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.stagger-1 {
  transition-delay: 50ms;
}

.stagger-2 {
  transition-delay: .12s;
}

.stagger-3 {
  transition-delay: .19s;
}

.anim-load-1 {
  animation: .5s .1s both fadeUp;
}

.anim-load-2 {
  animation: .5s .2s both fadeUp;
}

.anim-load-3 {
  animation: .5s .3s both fadeUp;
}

.anim-load-4 {
  animation: .5s .4s both fadeUp;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}
