:root {
  --ink: #102532;
  --muted: #60727b;
  --line: #dbe7e9;
  --paper: #f7fbfa;
  --white: #ffffff;
  --teal: #047f88;
  --teal-dark: #064c59;
  --coral: #ff7f66;
  --shadow: 0 24px 80px rgba(15, 45, 54, 0.16);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(167, 243, 223, 0.38), transparent 35rem),
    radial-gradient(circle at 90% 22%, rgba(244, 201, 107, 0.2), transparent 22rem),
    linear-gradient(180deg, #eef8f7 0%, #f7fbfa 42%, #ffffff 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
label,
select,
input[type="checkbox"],
input[type="radio"] {
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: clamp(520px, 74vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  background-image: url("assets/aura-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(247, 253, 252, 0.97) 0%, rgba(247, 253, 252, 0.86) 35%, rgba(247, 253, 252, 0.24) 67%, rgba(4, 76, 89, 0.52) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, var(--paper) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(20px, 7vw, 96px);
  right: clamp(20px, 7vw, 96px);
  bottom: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4, 127, 136, 0.52), transparent);
}

.hero__content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 132px;
}

.brand-kicker {
  width: fit-content;
  padding: 10px 14px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(4, 127, 136, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 45, 54, 0.08);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin: 18px 0 10px;
  max-width: 760px;
  font-size: clamp(4.8rem, 13vw, 10.5rem);
  line-height: 0.82;
  color: #082633;
}

.hero__subtitle {
  max-width: 800px;
  margin: 0;
  color: #143b48;
  font-size: clamp(1.55rem, 3.6vw, 3.35rem);
  line-height: 1.02;
  font-weight: 800;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero__meta span {
  padding: 10px 13px;
  border: 1px solid rgba(4, 127, 136, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #224653;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 26px rgba(15, 45, 54, 0.08);
}

.registration {
  width: min(1120px, calc(100% - 32px));
  margin: -72px auto 64px;
  display: grid;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.registration__intro,
.registration-form {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 231, 233, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.registration__intro {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: end;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.registration__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.registration__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.registration-form {
  border-radius: 8px;
  padding: clamp(16px, 3.5vw, 34px);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.stepper__item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.stepper__item::before,
.stepper__item::after {
  content: "";
  position: absolute;
  top: 17px;
  z-index: 0;
  width: 50%;
  height: 3px;
  background: var(--line);
}

.stepper__item::before {
  left: 0;
}

.stepper__item::after {
  right: 0;
}

.stepper__item:first-child::before,
.stepper__item:last-child::after {
  display: none;
}

.stepper__item span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
}

.stepper__item strong {
  display: block;
  line-height: 1.2;
}

.stepper__item.is-complete::before,
.stepper__item.is-complete::after,
.stepper__item.is-active::before {
  background: var(--teal);
}

.stepper__item.is-complete span,
.stepper__item.is-active span {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.stepper__item.is-active strong,
.stepper__item.is-complete strong {
  color: var(--teal-dark);
}

.form-section {
  padding: clamp(18px, 3.5vw, 30px);
  border: 1px solid rgba(219, 231, 233, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 253, 252, 0.94)),
    radial-gradient(circle at top right, rgba(167, 243, 223, 0.2), transparent 18rem);
}

.form-section + .form-section {
  margin-top: 18px;
}

.form-section[hidden],
.payment-success[hidden] {
  display: none;
}

.spotlight-arena[hidden] {
  display: none;
}

.package-field {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.package-field legend {
  margin-bottom: 10px;
  color: #1d3a45;
  font-size: 0.88rem;
  font-weight: 800;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.package-bubble {
  position: relative;
  display: grid;
  min-height: 86px;
  --package-accent: #2f80ed;
  --package-accent-dark: #1556b3;
  --package-soft: #eaf3ff;
  --package-glow: rgba(47, 128, 237, 0.48);
}

.package-bubble:nth-child(2) {
  --package-accent: #f05a9d;
  --package-accent-dark: #b91c66;
  --package-soft: #fff0f7;
  --package-glow: rgba(240, 90, 157, 0.5);
}

.package-bubble:nth-child(3) {
  --package-accent: #f59e0b;
  --package-accent-dark: #b45309;
  --package-soft: #fff7e6;
  --package-glow: rgba(245, 158, 11, 0.52);
}

.package-bubble input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-bubble span {
  position: relative;
  display: grid;
  align-content: center;
  gap: 3px;
  height: 100%;
  padding: 12px 18px;
  border: 2px solid rgba(4, 127, 136, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--package-accent) 0 34%, var(--white) 34% 100%),
    linear-gradient(180deg, var(--white), var(--package-soft));
  color: #254752;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15, 45, 54, 0.09);
  isolation: isolate;
  overflow: visible;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.package-bubble span > * {
  position: relative;
  z-index: 5;
}

.package-bubble span::before,
.package-bubble span::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  z-index: 1;
  width: calc(50% + 2px);
  background:
    linear-gradient(90deg, var(--package-accent-dark) 0 50%, var(--package-accent) 50% 100%),
    linear-gradient(180deg, var(--package-accent), var(--package-accent-dark));
  opacity: 0;
  pointer-events: none;
}

.package-bubble span::before {
  left: -2px;
  border-radius: 999px 0 0 999px;
}

.package-bubble span::after {
  right: -2px;
  border-radius: 0 999px 999px 0;
}

.package-bubble strong {
  color: var(--teal-dark);
  font-size: 0.86rem;
  line-height: 1.1;
}

.package-bubble b {
  color: #102532;
  font-size: 1.06rem;
  line-height: 1;
}

.package-bubble small,
.package-bubble em {
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

.package-bubble .spotlight-entry {
  color: var(--package-accent-dark);
  font-weight: 900;
}

.package-bubble:hover span,
.package-bubble input:focus-visible + span {
  border-color: rgba(4, 127, 136, 0.55);
  box-shadow: 0 10px 22px rgba(4, 127, 136, 0.14);
  transform: translateY(-1px);
}

.package-bubble input:checked + span {
  border-color: var(--package-accent-dark);
  background:
    linear-gradient(90deg, var(--package-accent) 0 34%, var(--white) 34% 100%),
    linear-gradient(180deg, var(--white), var(--package-soft));
  color: #254752;
  box-shadow:
    0 0 0 4px var(--package-glow),
    0 0 24px var(--package-glow),
    0 0 46px var(--package-glow),
    0 12px 24px rgba(15, 45, 54, 0.12);
  transform: translateY(-1px);
}

.package-bubble input:checked + span strong,
.package-bubble input:checked + span b {
  color: var(--package-accent-dark);
}

.package-bubble input:checked + span small,
.package-bubble input:checked + span em {
  color: #31515c;
}

.package-bubble input:checked + span strong {
  color: var(--package-accent-dark);
}

.package-bubble input:checked + span .spotlight-entry {
  color: var(--package-accent-dark);
}

.package-field.is-invalid .package-bubble span {
  border-color: #d85c4a;
  box-shadow: 0 0 0 4px rgba(216, 92, 74, 0.1);
}

.registration-controls {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.count-control {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 8px;
}

.count-button {
  min-height: 50px;
  border: 1px solid rgba(4, 127, 136, 0.24);
  border-radius: 999px;
  background: #eefbf8;
  color: var(--teal-dark);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 45, 54, 0.08);
}

.count-button:hover {
  border-color: rgba(4, 127, 136, 0.58);
  background: #def7f1;
}

.count-control input {
  text-align: center;
  font-weight: 900;
}

.pricing-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(4, 127, 136, 0.16);
  border-radius: 8px;
  background: #f3faf8;
  color: #31515c;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.member-details {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.member-details[hidden] {
  display: none;
}

.member-details__heading {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.member-details__heading h4 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.08rem;
}

.member-details__heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.member-list {
  display: grid;
  gap: 14px;
}

.member-card {
  padding: 16px;
  border: 1px solid rgba(219, 231, 233, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.member-card h5 {
  margin: 0 0 14px;
  color: #1d3a45;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.package-bubble.is-breaking span {
  animation: capsuleSettle 1800ms ease-out;
}

.package-bubble.is-breaking span::before {
  animation: capsuleSplitLeft 1800ms ease-out forwards;
}

.package-bubble.is-breaking span::after {
  animation: capsuleSplitRight 1800ms ease-out forwards;
}

.capsule-particles {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  overflow: hidden;
}

.capsule-particles i {
  position: absolute;
  left: var(--start-x);
  top: var(--start-y);
  width: var(--size);
  height: var(--size);
  border-radius: 999px;
  background: var(--color);
  box-shadow: 0 7px 14px rgba(15, 45, 54, 0.14);
  transform: translate(-50%, -50%);
  animation: capsuleBubbleFall 2400ms cubic-bezier(0.2, 0.72, 0.22, 1) var(--delay) forwards;
}

@keyframes capsuleSettle {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  35% {
    transform: translateY(-2px) scale(0.98);
  }
}

@keyframes capsuleSplitLeft {
  0% {
    opacity: 0.96;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  42% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translate(-52px, 34px) rotate(-12deg) scale(0.9);
  }
}

@keyframes capsuleSplitRight {
  0% {
    opacity: 0.96;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  42% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translate(52px, 34px) rotate(12deg) scale(0.9);
  }
}

@keyframes capsuleBubbleFall {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0.86);
  }
}

.section-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
}

.section-heading > span {
  min-width: 44px;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #e8f8f5;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field[hidden] {
  display: none;
}

.field--wide {
  grid-column: 1 / -1;
}

.field span {
  color: #1d3a45;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfefd;
  color: var(--ink);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

input[type="file"] {
  height: auto;
  padding: 12px 14px;
}

textarea {
  min-height: 104px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(4, 127, 136, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(4, 127, 136, 0.12);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #d85c4a;
  box-shadow: 0 0 0 4px rgba(216, 92, 74, 0.1);
}

.error-message {
  min-height: 16px;
  color: #b84232;
  font-size: 0.78rem;
  font-weight: 700;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--teal);
}

.consent-section {
  border-color: rgba(4, 127, 136, 0.22);
}

.consent {
  padding: 16px;
  border: 1px solid rgba(219, 231, 233, 0.94);
  border-radius: 8px;
  background: #fbfefd;
  color: #31515c;
  line-height: 1.55;
  font-weight: 650;
}

.consent + .consent,
.consent-error + .consent {
  margin-top: 12px;
}

.consent--required {
  border-color: rgba(255, 127, 102, 0.5);
  background: #fff9f7;
}

.consent.is-invalid {
  border-color: #d85c4a;
  box-shadow: 0 0 0 4px rgba(216, 92, 74, 0.1);
}

.payment-layout {
  display: grid;
  gap: 18px;
}

.payment-card {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 76, 89, 0.96), rgba(4, 127, 136, 0.92)),
    radial-gradient(circle at top right, rgba(255, 127, 102, 0.26), transparent 20rem);
  color: var(--white);
}

.payment-card .eyebrow {
  margin-bottom: 0;
  color: #bdf6e8;
}

.payment-card strong {
  font-size: 2rem;
  line-height: 1;
}

.payment-card span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.payment-success {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(4, 127, 136, 0.24);
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  background: #f3faf8;
}

.status-label {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-success h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.payment-success p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.payment-success dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.payment-success div {
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
}

.payment-success dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-success dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.spotlight-arena {
  padding: clamp(18px, 3.5vw, 30px);
  border: 1px solid rgba(219, 231, 233, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 253, 252, 0.94)),
    radial-gradient(circle at top right, rgba(255, 127, 102, 0.16), transparent 18rem);
  box-shadow: var(--shadow);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.spotlight-card {
  display: grid;
}

.spotlight-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.spotlight-card span {
  display: grid;
  gap: 6px;
  min-height: 92px;
  align-content: center;
  padding: 16px;
  border: 2px solid rgba(4, 127, 136, 0.18);
  border-radius: 8px;
  background: #fbfefd;
  color: #254752;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 45, 54, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.spotlight-card strong {
  color: var(--teal-dark);
  font-size: 1rem;
}

.spotlight-card small {
  color: var(--muted);
  font-weight: 800;
}

.spotlight-card:hover span,
.spotlight-card input:focus-visible + span {
  border-color: rgba(4, 127, 136, 0.48);
  transform: translateY(-1px);
}

.spotlight-card input:checked + span {
  border-color: var(--teal);
  background: #eefbf8;
  box-shadow: 0 0 0 4px rgba(4, 127, 136, 0.14), 0 14px 30px rgba(4, 127, 136, 0.16);
}

.spotlight-ticket-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 18px;
  align-items: end;
}

.spotlight-amount {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(4, 127, 136, 0.16);
  border-radius: 8px;
  background: #f3faf8;
}

.spotlight-amount span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spotlight-amount strong {
  color: var(--teal-dark);
  font-size: 1.4rem;
}

.spotlight-amount small {
  color: var(--muted);
  line-height: 1.45;
  font-weight: 700;
}

.spotlight-payment-panel {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(4, 127, 136, 0.18);
  border-radius: 8px;
  background: #fbfefd;
}

.spotlight-payment-panel h4 {
  margin: 4px 0 0;
  color: var(--teal-dark);
  font-size: 1.1rem;
}

.spotlight-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 16px;
  align-items: end;
}

.spotlight-payment-action {
  display: flex;
}

.spotlight-payment-action .btn {
  width: 100%;
  min-width: 150px;
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}

.spotlight-actions .btn:disabled {
  cursor: not-allowed;
}

.spotlight-complete-stage {
  display: grid;
  min-height: min(620px, 72vh);
  place-items: center;
  padding: clamp(24px, 6vw, 64px);
}

.spotlight-complete-card {
  width: min(100%, 760px);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid rgba(4, 127, 136, 0.22);
  border-left: 6px solid var(--coral);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 250, 248, 0.96)),
    radial-gradient(circle at top right, rgba(255, 127, 102, 0.16), transparent 18rem);
  box-shadow: var(--shadow);
  text-align: center;
}

.spotlight-complete-card h2 {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
}

.spotlight-complete-card p:last-child {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  box-shadow: 0 18px 36px rgba(4, 127, 136, 0.28);
}

.btn--secondary {
  color: var(--teal-dark);
  background: #e9f6f4;
}

.save-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(4, 127, 136, 0.18);
  border-radius: 8px;
  background: #f3faf8;
  color: #31515c;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.save-status[hidden] {
  display: none;
}

.save-status.is-error {
  border-color: rgba(216, 92, 74, 0.34);
  background: #fff9f7;
  color: #b84232;
}

@media (max-width: 900px) {
  .registration__intro,
  .form-grid,
  .package-grid,
  .registration-controls,
  .spotlight-grid,
  .spotlight-ticket-panel,
  .spotlight-payment-grid {
    grid-template-columns: 1fr;
  }

  .payment-success dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .hero {
    min-height: 620px;
  }

  .hero__content {
    padding: 72px 0 126px;
  }

  .hero__image {
    background-position: 58% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(247, 253, 252, 0.96) 0%, rgba(247, 253, 252, 0.86) 52%, rgba(247, 253, 252, 0.38) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 66%, var(--paper) 100%);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > span {
    width: fit-content;
  }

  .stepper {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stepper__item {
    grid-template-columns: 36px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .stepper__item::before,
  .stepper__item::after {
    display: none;
  }

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

  .form-actions {
    flex-direction: column-reverse;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .hero__content,
  .registration {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: clamp(4.2rem, 24vw, 6rem);
  }

  .hero__subtitle {
    font-size: 1.7rem;
  }

  .registration {
    margin-top: -58px;
  }

  .hero__meta span {
    width: 100%;
    text-align: center;
  }
}
