/* ── PRICING PAGE ── */

/* ── HERO ── */
#pricing-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 7rem 1.5rem 5rem;
  border-bottom: none;
}

.pricing-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(780px, 100%);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.pricing-hero-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.44rem 0.72rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 4px;
  background: rgba(255, 215, 0, 0.06);
  color: var(--gold);
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pricing-hero-badge-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.14);
  animation: dot-pulse 2.2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.14); }
  50%       { box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.06); }
}

.pricing-hero-heading {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  text-shadow: 0 0 60px rgba(255, 215, 0, 0.12);
  margin-bottom: 1.15rem;
}

.pricing-hero-heading::first-line {
  color: var(--gold);
}

.pricing-hero-sub {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(0.96rem, 2vw, 1.08rem);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

/* ── PRICE STAGE ── */
.price-stage {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  width: 100%;
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-amount {
  display: block;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  text-shadow:
    0 0 60px rgba(255, 215, 0, 0.28),
    0 0 120px rgba(255, 215, 0, 0.1);
  letter-spacing: -0.03em;
}

.price-desc {
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── EARLY BIRD CARD ── */
.early-bird-card {
  padding: 1.25rem 1.45rem;
  border: 1px solid rgba(255, 215, 0, 0.32);
  border-top: 2px solid var(--gold);
  border-radius: 6px;
  background: rgba(255, 215, 0, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 280px;
  flex: 1;
  max-width: 380px;
}

.early-bird-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.early-bird-label {
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.early-bird-save {
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.1);
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.early-bird-price {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.early-bird-price strong {
  color: var(--gold);
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 2rem;
}

/* ── SPOT DOTS ── */
.spot-dots {
  display: flex;
  gap: 0.42rem;
  margin-bottom: 0.55rem;
}

.spot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.3);
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.spot-dot.claimed {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}

.spot-label {
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.spots-remaining {
  color: var(--gold);
  font-weight: 900;
}

/* ── HERO CTAS ── */
.pricing-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── ELIGIBILITY STRIP ── */
.pricing-eligibility {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  background: rgba(6, 9, 26, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  z-index: 2;
}

.eligibility-item {
  padding: 1.2rem 1.35rem;
  border-right: 1px solid rgba(255, 215, 0, 0.08);
}

.eligibility-item:last-child {
  border-right: none;
}

.eligibility-label {
  display: block;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.eligibility-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.eligibility-item-active .eligibility-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.eligibility-pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.14);
  animation: dot-pulse 2.2s ease-in-out infinite;
}

/* ── SHARED SECTION LAYOUT ── */
.pricing-section {
  padding: 5.5rem 1.5rem;
  border-top: 1px solid rgba(255, 215, 0, 0.08);
  position: relative;
  z-index: 1;
}

.pricing-section-dark {
  background: rgba(13, 22, 53, 0.38);
}

.pricing-container {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.pricing-container-narrow {
  width: min(760px, 100%);
}

/* ── FEATURE PILLARS ── */
.pricing-pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ── PROCESS STEPS ── */
.process-steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.35rem;
  align-items: start;
  padding: 1.45rem;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-left: 3px solid rgba(255, 215, 0, 0.32);
  border-radius: 0 6px 6px 0;
  background: var(--gold-dim);
  transition:
    border-color 0.22s ease,
    background 0.22s ease;
}

.process-step:hover {
  border-color: rgba(255, 215, 0, 0.32);
  border-left-color: var(--gold);
  background: rgba(255, 215, 0, 0.07);
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.process-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.48rem;
}

.process-desc {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
  margin-bottom: 0.65rem;
}

.process-meta {
  display: inline-block;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
}

/* ── FAQ ── */
.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 6px;
  background: var(--gold-dim);
  transition:
    border-color 0.22s ease,
    background 0.22s ease;
}

.faq-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.07);
}

.faq-q {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.faq-a {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.78;
}

/* ── OUTRO / FINAL CTA ── */
.pricing-outro {
  position: relative;
  overflow: hidden;
  padding: 7rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 215, 0, 0.08);
  background:
    linear-gradient(180deg, rgba(6, 9, 26, 0.2), rgba(6, 9, 26, 0.82)),
    linear-gradient(90deg, rgba(255, 215, 0, 0.06), rgba(255, 215, 0, 0.03), rgba(255, 215, 0, 0.06));
}

#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pricing-outro-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(720px, 100%);
  margin: 0 auto;
}

.pricing-outro-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--gold);
  text-wrap: balance;
  margin-bottom: 0.85rem;
  margin-top: 0.5rem;
}

.pricing-outro-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.85rem;
}

.pricing-outro-cta {
  margin-bottom: 1rem;
}

.pricing-outro-note {
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── FOOTER ── */
.pricing-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 2.2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(6, 9, 26, 0.92);
  text-align: center;
}

.pricing-footer-copy,
.pricing-footer-nav {
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.pricing-footer-copy a,
.pricing-footer-nav a {
  color: var(--gold);
  text-decoration: none;
}

.pricing-footer-copy a:hover,
.pricing-footer-nav a:hover {
  color: var(--white);
}

.pricing-footer-nav {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pricing-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pricing-eligibility {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eligibility-item:nth-child(2) {
    border-right: none;
  }

  .eligibility-item:nth-child(1),
  .eligibility-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
  }

  .price-stage {
    flex-direction: column;
  }

  .early-bird-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .pricing-section {
    padding: 4.5rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .pricing-nav-label {
    display: none;
  }

  #pricing-hero {
    padding: 5.5rem 1.25rem 4rem;
  }

  .pricing-hero-inner {
    align-items: flex-start;
  }

  .pricing-cta-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-cta-wrap .hero-cta {
    text-align: center;
  }

  .pricing-eligibility {
    grid-template-columns: 1fr;
  }

  .eligibility-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
  }

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

  .pricing-pillars {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .pricing-section {
    padding: 4rem 1.25rem;
  }

  .pricing-outro {
    padding: 5rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-hero-inner,
  .pricing-hero-badge-dot,
  .eligibility-pulse {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── CLAIM FORM SECTION ── */

.claim-form-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 60ch;
}

.claim-form-intro strong {
  color: var(--gold);
}

/* Live spot status above form */
.claim-spot-status {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.5rem;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.14);
  border-radius: 8px;
  margin-bottom: 2.5rem;
}

.claim-spot-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.claim-spot-text {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.claim-spot-text strong {
  color: var(--gold);
  font-size: 1.1rem;
}

/* The form itself */
.claim-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.claim-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.claim-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.claim-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.claim-required {
  color: var(--gold);
  margin-left: 0.15em;
}

.claim-optional {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 0.4em;
}

.claim-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 6px;
  color: var(--white);
  font-size: 1.05rem;
  font-family: inherit;
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  caret-color: var(--gold);
}

.claim-input::placeholder {
  color: rgba(122, 141, 184, 0.5);
}

.claim-input:focus {
  border-color: rgba(255, 215, 0, 0.65);
  background: rgba(255, 215, 0, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.claim-input.is-invalid {
  border-color: rgba(255, 100, 100, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.08);
}

.claim-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

.claim-field-error {
  font-size: 0.82rem;
  color: #ff9999;
  min-height: 1.1em;
  letter-spacing: 0.02em;
}

.claim-field-hint {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  opacity: 0.7;
}

/* Submit row */
.claim-submit-row {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.claim-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s, opacity 0.2s;
  font-family: inherit;
  text-transform: uppercase;
}

.claim-submit:hover:not(:disabled) {
  background: #ffe840;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 215, 0, 0.35);
}

.claim-submit:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: none;
}

.claim-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.claim-submit-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

/* Form-level error */
.claim-form-error {
  padding: 1rem 1.25rem;
  background: rgba(255, 80, 80, 0.07);
  border: 1px solid rgba(255, 100, 100, 0.25);
  border-radius: 6px;
  font-size: 0.95rem;
  color: #ff9999;
  line-height: 1.6;
}

/* Success state */
.claim-success {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(111, 207, 151, 0.06);
  border: 1px solid rgba(111, 207, 151, 0.22);
  border-radius: 10px;
}

.claim-success-icon {
  font-size: 3rem;
  color: #6fcf97;
  margin-bottom: 1rem;
  display: block;
  text-shadow: 0 0 24px rgba(111, 207, 151, 0.5);
}

.claim-success-heading {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #6fcf97;
  margin-bottom: 1rem;
}

.claim-success-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 1rem;
}

.claim-success-body strong {
  color: var(--gold);
}

.claim-success-next {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.claim-success-next strong {
  color: var(--white);
}

.claim-success-cta {
  display: inline-block;
}

/* Sold-out state */
.claim-sold-out {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 215, 0, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.14);
  border-radius: 10px;
}

.claim-sold-out-heading {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.claim-sold-out-body {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 1.75rem;
}

@media (max-width: 680px) {
  .claim-form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .claim-input {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
  .claim-submit {
    font-size: 1rem;
  }
  .claim-spot-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .claim-submit,
  .claim-input {
    transition: none;
  }
}
