.wrap {
  max-width: 61.25rem;
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  touch-action: pan-y;
}

.wrap > * {
  opacity: 0;
  animation: rise-in 0.6s ease-out forwards;
}

.wrap > *:nth-child(1) {
  animation-delay: 0.05s;
}

.wrap > *:nth-child(2) {
  animation-delay: 0.12s;
}

.wrap > *:nth-child(3) {
  animation-delay: 0.19s;
}

.wrap > *:nth-child(4) {
  animation-delay: 0.26s;
}

.wrap > *:nth-child(5) {
  animation-delay: 0.33s;
}

.wrap > *:nth-child(6) {
  animation-delay: 0.4s;
}

.wrap > *:nth-child(7) {
  animation-delay: 0.47s;
}

.wrap > *:nth-child(8) {
  animation-delay: 0.54s;
}

.wrap > *:nth-child(9) {
  animation-delay: 0.61s;
}

.top-actions {
  display: flex;
  justify-content: flex-end;
}


.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.brand-mark {
  display: flex;
  justify-content: center;
}

.brand-sigil {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.0625rem solid var(--accent-border-strong);
  position: relative;
  box-shadow: 0 0 1.25rem var(--accent-shadow-soft);
}

.brand-sigil::before,
.brand-sigil::after {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border-radius: 50%;
  border: 0.0625rem solid var(--accent-border-soft);
}

.brand-sigil::after {
  inset: 1.375rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  font-size: 0.75rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--accent);
  letter-spacing: 0.0625rem;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
}

.byline {
  font-size: 0.85rem;
  color: rgba(215, 180, 106, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  color: var(--muted);
}

.offerings {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offerings-group {
  background: linear-gradient(160deg, rgba(17, 14, 27, 0.98), rgba(24, 20, 36, 0.96));
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 1.5rem;
  box-shadow: 0 1.5rem 2.875rem rgba(6, 4, 12, 0.6);
  border: 0.0625rem solid var(--accent-border-faint);
}

.offerings-title {
  text-align: center;
  font-size: 1.6rem;
  color: #d6c4ff;
  margin-bottom: 1.125rem;
}

.offerings-desc {
  margin: 0 auto 1.125rem;
  max-width: 40rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.foot {
  margin-top: auto;
  text-align: center;
  font-size: 0.85rem;
  padding: 1rem;
  color: var(--muted);
  z-index: 1;
  width: 100%;
}

.foot p {
  max-width: 33.75rem;
  margin: 0 auto;
  line-height: 1.5;
}
