:root {
  --throne-black: #050509;
  --throne-charcoal: #0a0d13;
  --throne-panel: #0c1016;
  --throne-border: rgba(255, 255, 255, 0.16);
  --throne-text: #f2f5fa;
  --throne-muted: #bdc8d5;
  --throne-dim: #8f9cad;
  --throne-blue: #197ffb;
  --throne-pink: #f800a5;
}

.throne-wrap {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding: 3rem 1rem;
  overflow: visible;
}

.throne-hero-media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
}

.throne-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.throne-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(25, 127, 251, 0.28), transparent 40%),
    radial-gradient(circle at 85% 86%, rgba(248, 0, 165, 0.22), transparent 45%),
    linear-gradient(to bottom, rgba(5, 5, 9, 0.38), rgba(5, 5, 9, 0.62));
}

.throne-sound-toggle {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(8, 12, 20, 0.82);
  color: #e8eff8;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.72rem;
  cursor: pointer;
}

.throne-sound-toggle:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(10, 17, 31, 0.92);
}

.throne-sound-toggle:focus-visible {
  outline: 2px solid rgba(124, 180, 255, 0.85);
  outline-offset: 2px;
}

.throne-card {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  max-width: 56rem;
  overflow: hidden;
  border: 1px solid var(--throne-border);
  border-radius: 1.25rem;
  background: radial-gradient(circle at 18% 8%, rgba(25, 127, 251, 0.15), transparent 38%),
    radial-gradient(circle at 88% 86%, rgba(248, 0, 165, 0.14), transparent 42%),
    var(--throne-charcoal);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
  color: var(--throne-text);
  padding: 1.5rem;
}

.throne-accent {
  pointer-events: none;
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  filter: blur(54px);
}

.throne-accent-blue {
  top: -7rem;
  left: -5rem;
  background: rgba(25, 127, 251, 0.18);
}

.throne-accent-pink {
  right: -5rem;
  bottom: -8rem;
  background: rgba(248, 0, 165, 0.14);
}

.throne-form,
.throne-payment,
.throne-success {
  position: relative;
  z-index: 1;
  animation: throne-fade 360ms ease-out;
}

.throne-progress {
  margin: 0 0 1rem;
}

.throne-progress-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.throne-progress-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.7rem;
  color: #94a3b7;
  background: rgba(255, 255, 255, 0.02);
}

.throne-progress-item.is-active {
  border-color: rgba(25, 127, 251, 0.7);
  color: #e4edf9;
  background: rgba(25, 127, 251, 0.15);
}

.throne-progress-item.is-complete {
  border-color: rgba(120, 150, 186, 0.45);
  color: #cad6e5;
}

.throne-progress-index {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
}

.throne-progress-label {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.throne-header {
  margin: 0 0 1rem 0;
}

.throne-logo-wrap {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
}

.throne-logo {
  width: min(416px, 74%);
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

.throne-logo-fallback {
  margin: 0;
  color: #ecf3fc;
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
}

.throne-logo-fallback span {
  background: linear-gradient(90deg, var(--throne-blue), var(--throne-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.throne-eyebrow {
  margin: 0 0 0.5rem 0;
  font-size: 0.675rem;
  letter-spacing: 0.26em;
  font-weight: 650;
  color: var(--throne-dim);
}

.throne-title {
  margin: 0;
  line-height: 1.2;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  letter-spacing: -0.015em;
}

.throne-title:focus {
  outline: 2px solid rgba(124, 180, 255, 0.85);
  outline-offset: 0.25rem;
  border-radius: 0.25rem;
}

.throne-helper {
  margin: 0.6rem 0 0;
  color: var(--throne-dim);
  font-size: 0.9rem;
}

.throne-subhead {
  margin: 1.4rem 0 0.65rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7dee9;
}

.throne-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.throne-field {
  display: block;
}

.throne-field > span {
  display: block;
  margin: 0 0 0.4rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #d0d9e4;
}

.throne-field > input,
.throne-field > select {
  width: 100%;
  color: var(--throne-text);
  background: var(--throne-panel);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.68rem;
  padding: 0.65rem 0.8rem;
  line-height: 1.35;
}

.throne-field > textarea {
  width: 100%;
  min-height: 88px;
  resize: vertical;
  color: var(--throne-text);
  background: var(--throne-panel);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.68rem;
  padding: 0.65rem 0.8rem;
  line-height: 1.35;
  font: inherit;
}

.throne-field > select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #8ea0b7 50%),
    linear-gradient(135deg, #8ea0b7 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.throne-field > input:focus,
.throne-field > select:focus,
.throne-field > textarea:focus {
  outline: none;
  border-color: rgba(25, 127, 251, 0.85);
  box-shadow: 0 0 0 2px rgba(25, 127, 251, 0.32);
}

.throne-field > input[aria-invalid="true"],
.throne-field > select[aria-invalid="true"],
.throne-field > textarea[aria-invalid="true"] {
  border-color: rgba(248, 0, 165, 0.55);
}

.throne-field-full {
  grid-column: 1 / -1;
}

.throne-field > small,
.throne-check-error {
  display: block;
  margin-top: 0.32rem;
  font-size: 0.72rem;
  color: #f5aad8;
}

.throne-terms-note {
  margin: 0 0 0.55rem;
  color: #c0c9d6;
  font-size: 0.9rem;
}

.throne-legal-list {
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.throne-legal-item {
  margin: 0;
  font-size: 0.85rem;
}

.throne-link-inline {
  color: #d7ebff;
  text-underline-offset: 2px;
}

.throne-link-inline:hover {
  color: #ffffff;
}

.throne-check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #e4eaf2;
  font-size: 0.92rem;
  margin-top: 0.25rem;
}

.throne-check-row input[type="checkbox"] {
  margin-top: 0.15rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--throne-blue);
}

.throne-form-error {
  margin: 0.75rem 0;
  font-size: 0.86rem;
  color: #f5aad8;
}

.throne-alert {
  margin: 0.75rem 0;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(248, 0, 165, 0.35);
  background: rgba(248, 0, 165, 0.08);
  border-radius: 0.65rem;
  color: #f7c2e3;
  font-size: 0.85rem;
}

.throne-draft-note {
  margin: 0.8rem 0 0;
  font-size: 0.76rem;
  color: #90a0b6;
}

.throne-btn {
  border: 0;
  border-radius: 0.7rem;
  font-weight: 650;
  font-size: 0.88rem;
  padding: 0.68rem 1rem;
  line-height: 1.2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.throne-btn:focus-visible {
  outline: 2px solid rgba(124, 180, 255, 0.85);
  outline-offset: 2px;
}

.throne-btn-primary {
  background: var(--throne-blue);
  color: #fff;
}

.throne-btn-primary:hover {
  background: #176fda;
}

.throne-btn-primary:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.throne-btn-secondary {
  color: #e9edf5;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
}

.throne-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.throne-btn-secondary[aria-disabled="true"] {
  opacity: 0.6;
}

.throne-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.throne-payment-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.throne-payment-option {
  display: grid;
  grid-template-columns: auto 140px 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.throne-payment-option.is-active {
  border-color: rgba(25, 127, 251, 0.8);
  box-shadow: 0 0 0 2px rgba(25, 127, 251, 0.18);
}

.throne-payment-option input {
  accent-color: var(--throne-blue);
}

.throne-payment-amount {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f4f7fb;
}

.throne-payment-label {
  color: #c4cfdb;
  line-height: 1.35;
  font-size: 0.92rem;
}

.throne-summary {
  margin-top: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.throne-summary-grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.throne-summary-grid p {
  margin: 0;
  display: grid;
  gap: 0.2rem;
  font-size: 0.85rem;
}

.throne-summary-grid strong {
  font-size: 0.72rem;
  color: #9bacbf;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.throne-summary-grid span {
  color: #e1e8f2;
  line-height: 1.35;
}

.throne-inline-action {
  margin-top: 0.75rem;
  border: 0;
  background: transparent;
  color: #9ec8ff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.throne-inline-action:hover {
  color: #c6e0ff;
}

.throne-inline-action:focus-visible {
  outline: 2px solid rgba(124, 180, 255, 0.85);
  outline-offset: 2px;
  border-radius: 0.2rem;
}

.throne-payment-note {
  margin: 0.85rem 0 0;
  color: #9db0c8;
  font-size: 0.82rem;
}

.throne-verifying {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.throne-success > p {
  margin: 0.8rem 0 0 0;
  max-width: 52rem;
  color: var(--throne-muted);
  line-height: 1.5;
}

.throne-detail {
  margin-top: 0.7rem;
  color: #d5deea;
  font-size: 0.9rem;
}

.throne-detail strong {
  color: #a8b8cc;
  margin-right: 0.35rem;
}

.throne-receipt {
  margin-top: 1rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.throne-status {
  margin-top: 0.35rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.throne-divider {
  height: 1px;
  border: 0;
  margin: 1.5rem 0 1.4rem 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.throne-link {
  margin-top: 0.95rem;
  color: #9eabbd;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
  cursor: pointer;
}

.throne-link:hover {
  color: #d5deeb;
}

.throne-link:focus-visible {
  outline: 2px solid rgba(124, 180, 255, 0.85);
  outline-offset: 3px;
  border-radius: 0.2rem;
}

.throne-closing {
  margin-top: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.69rem;
  color: #818e9e;
}

@keyframes throne-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .throne-wrap {
    padding: 1.3rem 0.8rem 2.4rem;
  }

  .throne-logo {
    width: min(300px, 94%);
  }

  .throne-sound-toggle {
    top: 0.7rem;
    right: 0.7rem;
    font-size: 0.68rem;
    padding: 0.4rem 0.62rem;
  }

  .throne-card {
    padding: 1rem;
    border-radius: 1rem;
  }

  .throne-grid,
  .throne-summary-grid {
    grid-template-columns: 1fr;
  }

  .throne-btn {
    width: 100%;
  }

  .throne-actions {
    flex-direction: column;
  }

  .throne-payment-option {
    grid-template-columns: auto 1fr;
    gap: 0.55rem;
  }

  .throne-payment-amount {
    grid-column: 2;
    font-size: 1rem;
  }

  .throne-payment-label {
    grid-column: 2;
  }
}
