* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  color-scheme: light;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg-gradient);
  color: var(--cream);
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button,
label {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  translate: 0 -200%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  translate: 0;
}

.site-header,
.page-shell,
footer {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.site-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgb(255 255 243 / 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 3rem;
  height: 3.4rem;
  display: block;
  object-fit: contain;
}

.header-label,
.eyebrow,
.step,
.tier-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.page-shell {
  padding-block: 44px 72px;
}

.intro {
  max-width: 850px;
  margin-bottom: 34px;
}

.eyebrow,
.step {
  margin: 0 0 10px;
  color: var(--gold);
}

.intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: var(--display-tracking);
  text-transform: uppercase;
}

.intro h1 em {
  color: var(--gold);
  font-style: normal;
}

.intro > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
}

.ticket-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 28px;
  align-items: start;
}

.ticket-left {
  min-width: 0;
  display: grid;
  gap: 22px;
}

.tiers {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tiers legend {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 1.12rem;
}

.tier {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.tier input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.tier-content {
  height: 100%;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 23px;
  border: 2px solid rgb(255 255 243 / 0.45);
  border-radius: 24px;
  background: rgb(23 52 56 / 0.54);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.tier:hover .tier-content {
  border-color: var(--cream);
  transform: translateY(-2px);
}

.tier:active .tier-content {
  transform: translateY(0);
}

.tier input:checked + .tier-content {
  border-color: var(--gold);
  background: var(--teal-950);
}

.tier input:focus-visible + .tier-content,
input:focus-visible,
.primary-action:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.tier-kicker {
  color: var(--gold);
}

.tier-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.tier-heading strong {
  max-width: 180px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.tier-heading > span {
  flex: 0 0 auto;
  font-weight: 700;
}

.tier-copy {
  margin-top: auto;
  font-size: 0.93rem;
  line-height: 1.45;
  color: rgb(255 255 243 / 0.82);
}

.card {
  border: 1px solid rgb(255 255 243 / 0.38);
  border-radius: 24px;
  background: var(--cream);
  color: var(--ink);
}

.details-card,
.payment-card,
.host-card,
.included-card,
.summary {
  padding: 28px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.summary h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.field + .field {
  margin-top: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.92rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 54px;
  padding: 12px 15px;
  border: 2px solid #aeb8b4;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
}

.field input:hover {
  border-color: var(--teal-900);
}

.field input[aria-invalid="true"] {
  border-color: #9e2f29;
}

.error {
  min-height: 1.35em;
  margin: 5px 0 0;
  color: #84251f;
  font-size: 0.85rem;
  line-height: 1.35;
}

.payment-card[hidden],
.provider-panel[hidden],
.vip-only[hidden] {
  display: none;
}

.payment-card > p {
  margin: -8px 0 18px;
  font-size: 0.95rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.payment-methods legend {
  width: 100%;
  margin-bottom: 10px;
  font-weight: 700;
}

.payment-method {
  position: relative;
  cursor: pointer;
}

.payment-method input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.payment-method > span {
  height: 100%;
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 2px solid #aeb8b4;
  border-radius: 14px;
  background: var(--white);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.payment-method small {
  color: var(--teal-700);
  line-height: 1.35;
}

.payment-method:hover > span {
  border-color: var(--teal-900);
  transform: translateY(-1px);
}

.payment-method:active > span {
  transform: translateY(0);
}

.payment-method input:checked + span {
  border-color: var(--teal-900);
  background: rgb(182 237 242 / 0.28);
}

.payment-method input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.provider-panel {
  padding: 18px;
  border: 1px solid #cdd7d3;
  border-radius: 16px;
  background: rgb(182 237 242 / 0.14);
}

.provider-panel h3 {
  margin: 0 0 12px;
  color: var(--teal-950);
  font-size: 1rem;
}

.provider-panel > p {
  margin: -4px 0 14px;
  color: var(--teal-700);
  font-size: 0.9rem;
  line-height: 1.45;
}

.integration-mount {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 2px dashed var(--teal-700);
  border-radius: 14px;
  color: var(--teal-950);
  font-size: 0.88rem;
  text-align: center;
}

.host-profile {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.host-profile img {
  width: 160px;
  height: 160px;
  aspect-ratio: 1;
  display: block;
  border: 4px solid var(--gold);
  border-radius: 50%;
  clip-path: circle(50%);
  background: var(--ink);
  object-fit: cover;
  object-position: center 42%;
}

.host-profile h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.1;
}

.host-profile div > p:last-child {
  margin: 12px 0 0;
  line-height: 1.55;
}

.included-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
}

.included-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-900);
  font-weight: 700;
}

.checkout-action {
  width: 100%;
}

.ticket-right {
  position: sticky;
  top: 24px;
}

.summary .step {
  color: var(--teal-900);
}

.summary-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cdd7d3;
}

.summary-title > strong {
  color: var(--teal-950);
  font-size: 1.35rem;
  white-space: nowrap;
}

.benefits {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
}

.benefits li {
  position: relative;
  padding-left: 23px;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-900);
  font-weight: 700;
}

.primary-action {
  width: 100%;
  min-height: 60px;
  margin-top: 0;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  transition: background-color 160ms ease, transform 160ms ease;
}

.primary-action:hover {
  background: var(--teal-950);
  transform: translateY(-1px);
}

.primary-action:active {
  transform: translateY(1px);
}

.form-status {
  margin: 13px 0 0;
  color: #71301d;
  font-size: 0.88rem;
  line-height: 1.4;
}

.form-status:empty {
  display: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px 38px;
  border-top: 1px solid rgb(255 255 243 / 0.34);
  font-size: 0.76rem;
  color: rgb(255 255 243 / 0.8);
}

footer p {
  margin: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links a {
  color: inherit;
  text-underline-offset: 0.18em;
}

.legal-links a:hover {
  color: var(--cream);
}

@media (max-width: 1080px) {
  .ticket-grid {
    display: flex;
    flex-direction: column;
  }

  .ticket-left {
    display: contents;
  }

  .tiers {
    order: 1;
    width: 100%;
  }

  .ticket-right {
    position: static;
    order: 2;
    width: 100%;
  }

  .details-card {
    order: 3;
    width: 100%;
  }

  .payment-card {
    order: 4;
    width: 100%;
  }

  .host-card {
    order: 5;
    width: 100%;
  }

  .included-card {
    order: 6;
    width: 100%;
  }

  .checkout-action {
    order: 7;
    width: 100%;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }

  .site-header,
  .page-shell,
  footer {
    width: min(100% - 24px, 1200px);
  }

  .site-header {
    min-height: 58px;
  }

  .brand-mark {
    width: 2.65rem;
    height: 3rem;
  }

  .header-label {
    display: none;
  }

  .page-shell {
    padding-block: 22px 48px;
  }

  .intro {
    margin-bottom: 20px;
  }

  .intro h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .intro > p:last-child {
    margin-top: 11px;
    font-size: 1.0625rem;
    line-height: 1.5;
  }

  .payment-card > p,
  .host-profile div > p:last-child {
    font-size: 1.0625rem;
    line-height: 1.5;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .provider-panel {
    padding: 14px;
  }

  .ticket-grid {
    gap: 16px;
  }

  .tiers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .tiers legend {
    margin-bottom: 0;
    font-size: 0.98rem;
  }

  .tier-content {
    min-height: 145px;
    gap: 9px;
    padding: 14px 12px;
  }

  .tier-heading {
    display: grid;
    gap: 4px;
  }

  .tier-heading strong {
    font-size: 1.02rem;
  }

  .tier-copy {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .tier-kicker {
    font-size: 0.61rem;
  }

  .details-card,
  .payment-card,
  .host-card,
  .included-card,
  .summary {
    padding: 20px;
  }

  .summary {
    display: flex;
    flex-direction: column;
  }

  .summary .step,
  .summary-title,
  .benefits {
    margin-bottom: 12px;
  }

  .summary-title {
    padding-bottom: 12px;
  }

  .summary-title h2,
  .summary-title > strong {
    font-size: 1.08rem;
  }

  .benefits {
    gap: 5px;
    margin-top: 12px;
    font-size: 0.79rem;
  }

  .primary-action {
    min-height: 54px;
  }

  .host-profile {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .host-profile img {
    width: 112px;
    height: 112px;
    margin-inline: auto;
  }

  .host-profile .step,
  .host-profile h2 {
    text-align: center;
  }

  footer {
    display: grid;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
