:root {
  color-scheme: dark;
  --bg: #05050a;
  --ink: #ffffff;
  --muted: #d9d0f4;
  --soft: #a997d6;
  --purple: #8d4dff;
  --violet: #642bff;
  --line: rgba(168, 112, 255, 0.54);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 100%, rgba(95, 41, 179, 0.4), transparent 34rem),
    #05050a;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  overflow: hidden;
  background: #05050a;
}

.hero {
  position: relative;
  min-height: 790px;
  isolation: isolate;
  background: #05050a;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/home-hero-concert.png");
  background-position: center top;
  background-size: cover;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 5, 10, 0.1), rgba(5, 5, 10, 0.1) 38%, rgba(5, 5, 10, 0.94) 96%),
    radial-gradient(circle at 50% 38%, rgba(35, 11, 72, 0.08), rgba(3, 4, 13, 0.46) 50%, rgba(3, 4, 13, 0.8) 100%),
    linear-gradient(90deg, rgba(5, 5, 10, 0.64), rgba(5, 5, 10, 0.12) 36%, rgba(5, 5, 10, 0.16) 64%, rgba(5, 5, 10, 0.6));
}

.hero::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 21%);
}

.nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 96px, 1500px);
  margin: 0 auto;
  padding: 32px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
}

.brand__mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: url("#brand-gradient");
  stroke-width: 3.4;
  stroke-linejoin: round;
}

.brand__mark svg path:first-child {
  stroke: #7137ff;
}

.brand__mark svg path:nth-child(2) {
  stroke: #37a7ff;
}

.brand__mark svg path:nth-child(3) {
  stroke: #9d58ff;
  stroke-width: 2.4;
}

.brand__text {
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0;
}

.brand__text span {
  color: var(--purple);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.55vw, 30px);
  color: #f7f3ff;
  font-size: 0.95rem;
  font-weight: 650;
  white-space: nowrap;
}

.nav__links--left {
  justify-content: flex-start;
}

.nav__links--right {
  justify-content: flex-end;
}

.nav__user {
  max-width: 220px;
  overflow: hidden;
  color: #d8ccef;
  text-overflow: ellipsis;
}

.nav--light {
  width: 100%;
  padding: 24px 0;
  color: #14111f;
}

.nav--light .nav__links,
.nav--light .nav__user {
  color: #3c3551;
}

.nav--light .button--outline {
  color: #2b2041;
  border-color: #d8d2e5;
  background: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 206px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  color: #fff;
}

.button--small {
  min-width: 0;
  min-height: 40px;
  padding: 0 20px;
  font-size: 0.92rem;
}

.button--solid {
  background: linear-gradient(135deg, #5527ff 0%, #bd5dff 100%);
  box-shadow: 0 15px 42px rgba(112, 48, 255, 0.28);
}

.button--outline {
  border-color: var(--line);
  background: rgba(8, 9, 22, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100% - 32px, 760px);
  margin: 170px auto 0;
  text-align: center;
}

.hero__content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(4rem, 5.25vw, 6.1rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__content h1 span {
  color: var(--purple);
}

.hero__content p {
  width: min(100%, 560px);
  margin: 26px 0 0;
  color: #fff;
  font-size: clamp(1rem, 1.18vw, 1.25rem);
  font-weight: 500;
  line-height: 1.42;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.feature-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  justify-content: center;
  gap: clamp(30px, 5vw, 88px);
  width: min(100% - 48px, 1040px);
  margin: 72px auto 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 170px;
}

.feature strong,
.feature small {
  display: block;
}

.feature strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.flash-stack {
  position: fixed;
  z-index: 20;
  top: 18px;
  right: 18px;
  display: grid;
  gap: 8px;
  width: min(360px, calc(100vw - 36px));
}

.flash {
  padding: 12px 14px;
  border: 1px solid #d8d2e5;
  border-radius: 6px;
  color: #241b35;
  background: #fff;
  box-shadow: 0 16px 42px rgba(31, 24, 54, 0.16);
  font-size: 0.92rem;
  font-weight: 700;
}

.flash--success {
  border-color: #b7e3cd;
}

.flash--error {
  border-color: #efb5b5;
}

.manager-shell,
.builder-shell,
.public-event {
  min-height: 100vh;
  color: #1d172a;
  background: #f7f6fb;
}

.manager-shell,
.public-event {
  padding: 0 min(48px, 5vw) 72px;
}

.manager-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, 1120px);
  margin: 42px auto 24px;
}

.manager-header h1,
.builder-card h1,
.builder-section h2,
.public-event h1,
.public-event h2 {
  margin: 0;
  color: #221633;
  letter-spacing: 0;
}

.manager-header h1,
.public-event h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1;
}

.eyebrow {
  margin: 0 0 8px;
  color: #5f36d8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event-table,
.empty-state {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.event-row,
.ticket-row,
.empty-state,
.builder-section,
.ticket-panel {
  border: 1px solid #e3deeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(42, 31, 74, 0.08);
}

.event-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.event-row + .event-row {
  margin-top: 12px;
}

.event-row strong,
.event-row span,
.ticket-row strong,
.ticket-row span {
  display: block;
}

.event-row strong,
.ticket-row strong {
  color: #21172f;
}

.event-row span,
.ticket-row span,
.muted-copy,
.public-event p,
.public-event dd {
  color: #61586f;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #d7d0e3;
  border-radius: 999px;
  color: #4b425f;
  background: #f8f6fc;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-pill--published {
  border-color: #b7e3cd;
  color: #196845;
  background: #eefaf4;
}

.status-pill--archived {
  color: #766d81;
}

.empty-state {
  padding: 44px;
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 8px;
}

.builder-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
}

.builder-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px;
  border-right: 1px solid #e3deeb;
  background: #eeecf4;
}

.builder-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: #4f35d7;
  font-weight: 800;
}

.builder-card {
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(42, 31, 74, 0.08);
}

.builder-card h1 {
  margin-top: 16px;
  font-size: 1.5rem;
  line-height: 1.14;
}

.builder-card p {
  margin: 10px 0 0;
  color: #5e566d;
}

.builder-steps {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  color: #8b8498;
  font-weight: 800;
  list-style: none;
}

.builder-steps li {
  padding: 12px 0 12px 20px;
  border-left: 3px solid #d7d0e3;
}

.builder-steps .is-active {
  color: #4f35d7;
  border-left-color: #4f35d7;
}

.builder-main {
  width: min(100% - 48px, 980px);
  margin: 0 auto 72px;
}

.builder-section {
  padding: clamp(22px, 4vw, 40px);
  margin-top: 24px;
}

.builder-section__heading,
.builder-section--publish {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.builder-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

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

.form-field {
  display: grid;
  gap: 8px;
  color: #332945;
  font-weight: 800;
}

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

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d8d2e5;
  border-radius: 6px;
  color: #21172f;
  background: #fff;
  font: inherit;
  font-weight: 500;
}

.form-field textarea {
  resize: vertical;
}

.form-field small {
  color: #a33434;
}

.ticket-list,
.ticket-form {
  margin-top: 22px;
}

.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  box-shadow: none;
}

.ticket-row + .ticket-row {
  margin-top: 10px;
}

.public-event__hero {
  display: block;
  width: min(100%, 1120px);
  max-height: 420px;
  object-fit: cover;
  margin: 28px auto 0;
  border-radius: 8px;
}

.public-event__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  width: min(100%, 1120px);
  margin: 42px auto 0;
}

.public-event__body,
.ticket-panel {
  min-width: 0;
}

.event-summary {
  font-size: 1.16rem;
  line-height: 1.55;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.event-facts div {
  padding: 16px;
  border: 1px solid #e3deeb;
  border-radius: 8px;
  background: #fff;
}

.event-facts dt {
  margin-bottom: 6px;
  color: #221633;
  font-weight: 800;
}

.event-facts dd {
  margin: 0;
}

.event-notes {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: #61586f;
}

.ticket-panel {
  position: sticky;
  top: 24px;
  height: max-content;
  padding: 22px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 24px;
  width: min(100%, 1120px);
  margin: 42px auto 0;
}

.profile-preview {
  height: max-content;
  padding: 28px;
  border: 1px solid #e3deeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(42, 31, 74, 0.08);
}

.profile-preview img,
.profile-avatar {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 50%;
  object-fit: cover;
  color: #fff;
  background: linear-gradient(135deg, #5527ff 0%, #bd5dff 100%);
  font-size: 2.6rem;
  font-weight: 800;
}

.profile-preview h1 {
  margin: 22px 0 10px;
  color: #221633;
  font-size: 2rem;
  line-height: 1.1;
}

.profile-preview p {
  color: #61586f;
  line-height: 1.55;
}

.profile-preview span {
  color: #4f35d7;
  font-weight: 800;
}

.profile-form {
  margin-top: 0;
}

@media (max-width: 980px) {
  .builder-shell,
  .public-event__grid,
  .event-facts,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .builder-sidebar,
  .ticket-panel {
    position: static;
    height: auto;
  }

  .event-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .manager-header,
  .builder-section__heading,
  .builder-section--publish {
    align-items: stretch;
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

.feature small {
  margin-top: 5px;
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.feature__icon,
.category__icon {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #bd96ff;
}

.feature__icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(39, 10, 77, 0.34);
}

.feature__icon::before,
.category__icon::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
}

.feature__icon--grid::before {
  border-radius: 7px;
  background:
    radial-gradient(circle, currentColor 2px, transparent 3px) 2px 2px / 9px 9px;
}

.feature__icon--shield::before {
  width: 18px;
  height: 24px;
  border-radius: 2px 2px 8px 8px;
  clip-path: polygon(50% 0, 100% 18%, 86% 82%, 50% 100%, 14% 82%, 0 18%);
}

.feature__icon--spark::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 92%, 50% 70%, 21% 92%, 31% 56%, 2% 35%, 38% 34%);
}

.feature__icon--ticket::before {
  width: 25px;
  height: 18px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 8px, currentColor 8px 10px, transparent 10px);
}

.categories {
  margin-top: -1px;
  padding: 34px 32px 20px;
  background:
    radial-gradient(circle at 50% 0, rgba(117, 55, 199, 0.46), transparent 44rem),
    linear-gradient(180deg, rgba(19, 8, 38, 0.95), #080711);
  text-align: center;
}

.categories h2 {
  margin: 0 auto;
  max-width: 850px;
  color: #e8defc;
  font-size: clamp(1.08rem, 1.45vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(88px, 1fr));
  gap: 22px;
  width: min(100%, 1040px);
  margin: 34px auto 0;
}

.category {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #d7c7ff;
  font-size: 0.98rem;
  font-weight: 500;
}

.category__icon {
  width: 42px;
  height: 42px;
}

.category__icon::before {
  width: 30px;
  height: 30px;
}

.category__icon--music::before {
  width: 23px;
  height: 28px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 10px 10px;
  transform: skewY(-12deg);
}

.category__icon--masks::before {
  border-radius: 8px 8px 14px 14px;
  background:
    radial-gradient(circle at 34% 38%, currentColor 2px, transparent 3px),
    radial-gradient(circle at 66% 38%, currentColor 2px, transparent 3px);
}

.category__icon--ball::before {
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 46%, currentColor 47% 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, currentColor 47% 53%, transparent 54%);
}

.category__icon--people::before {
  border: 0;
  background:
    radial-gradient(circle at 50% 25%, transparent 0 5px, currentColor 6px 7px, transparent 8px),
    radial-gradient(circle at 22% 45%, transparent 0 4px, currentColor 5px 6px, transparent 7px),
    radial-gradient(circle at 78% 45%, transparent 0 4px, currentColor 5px 6px, transparent 7px),
    linear-gradient(currentColor, currentColor) center 82% / 28px 3px no-repeat;
}

.category__icon--star::before {
  clip-path: polygon(50% 1%, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
}

.category__icon--more::before {
  border-radius: 50%;
  background: radial-gradient(circle, currentColor 2px, transparent 3px) center / 8px 8px;
}

.auth-page {
  min-height: 100vh;
  padding-bottom: 80px;
  background:
    linear-gradient(180deg, rgba(5, 5, 10, 0.74), rgba(5, 5, 10, 0.98)),
    url("../images/home-hero-concert.png") center 28% / cover no-repeat;
}

.auth-panel {
  display: grid;
  gap: 18px;
  width: min(100% - 40px, 460px);
  margin: 96px auto 0;
  padding: 34px;
  border: 1px solid rgba(167, 116, 255, 0.28);
  border-radius: 8px;
  background: rgba(8, 8, 17, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.auth-panel--wide {
  width: min(100% - 40px, 560px);
}

.auth-panel h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.auth-panel p {
  margin: 0;
  color: #d8ccef;
  line-height: 1.6;
}

.auth-panel strong,
.auth-panel a:not(.button):not(.google-button) {
  color: #fff;
  font-weight: 800;
}

.auth-panel a:not(.button):not(.google-button) {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.auth-panel__status {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(167, 116, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(85, 39, 255, 0.92), rgba(189, 93, 255, 0.9));
  box-shadow: 0 12px 34px rgba(112, 48, 255, 0.26);
}

.auth-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.auth-panel__actions .button,
.auth-panel__actions .auth-submit {
  min-width: 0;
  flex: 1 1 180px;
}

.auth-alert {
  padding: 12px 14px;
  border: 1px solid rgba(255, 120, 120, 0.44);
  border-radius: 6px;
  color: #ffdede;
  background: rgba(92, 23, 35, 0.44);
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form__field {
  display: grid;
  gap: 8px;
}

.auth-form__field label {
  color: #f4efff;
  font-size: 0.92rem;
  font-weight: 750;
}

.auth-form__field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(167, 116, 255, 0.34);
  border-radius: 6px;
  color: #fff;
  font: inherit;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.auth-form__field input:focus {
  border-color: rgba(189, 93, 255, 0.86);
  box-shadow: 0 0 0 3px rgba(141, 77, 255, 0.18);
}

.auth-form__field--checkbox {
  grid-template-columns: 18px 1fr;
  align-items: center;
}

.auth-form__field--checkbox input {
  min-height: 18px;
  padding: 0;
}

.auth-form__field--checkbox .auth-form__errors {
  grid-column: 1 / -1;
}

.auth-form__errors ul {
  margin: 0;
  padding-left: 18px;
  color: #ffdede;
  font-size: 0.9rem;
  line-height: 1.45;
}

.auth-submit {
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #5527ff 0%, #bd5dff 100%);
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: #a997d6;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  height: 1px;
  content: "";
  background: rgba(167, 116, 255, 0.3);
}

.google-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #171421;
  font-weight: 800;
  background: #fff;
}

.google-button__mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  background: #4285f4;
}

.auth-switch {
  font-size: 0.95rem;
  text-align: center;
}

.auth-switch a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav--solid {
  width: min(100% - 96px, 1500px);
}

.about-hero {
  position: relative;
  min-height: 520px;
  padding: 120px 32px 84px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 10, 0.78), rgba(5, 5, 10, 0.96)),
    linear-gradient(90deg, rgba(5, 5, 10, 0.94), rgba(36, 16, 74, 0.62)),
    url("../images/home-hero-concert.png") center 28% / cover no-repeat;
}

.about-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  content: "";
  background: linear-gradient(180deg, transparent, #05050a);
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: #bb95ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-hero h1,
.about-section h2 {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-hero h1 {
  font-size: clamp(3.1rem, 5.1vw, 5.8rem);
  line-height: 0.98;
}

.about-hero p:last-child {
  max-width: 760px;
  margin: 28px auto 0;
  color: #eee7ff;
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
  line-height: 1.55;
}

.about-section {
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
  padding: 82px 0;
}

.about-section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 72px;
  align-items: start;
}

.about-section h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.08;
}

.about-copy {
  color: #d8ccef;
  font-size: 1.08rem;
  line-height: 1.72;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 22px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.about-points article,
.value-card {
  border: 1px solid rgba(167, 116, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(74, 32, 136, 0.28), rgba(15, 11, 27, 0.74)),
    rgba(12, 10, 22, 0.82);
}

.about-points article {
  min-height: 182px;
  padding: 24px;
}

.about-points span {
  display: block;
  color: #a673ff;
  font-size: 0.88rem;
  font-weight: 800;
}

.about-points p {
  margin: 28px 0 0;
  color: #eee7ff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.value-card {
  min-height: 250px;
  padding: 28px;
}

.value-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.25;
}

.value-card p {
  margin: 18px 0 0;
  color: #d8ccef;
  line-height: 1.65;
}

.about-section--contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 72px;
  padding: 40px;
  border: 1px solid rgba(167, 116, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(73, 28, 153, 0.5), rgba(8, 8, 17, 0.95));
}

.about-section--contact p:last-child {
  margin: 16px 0 0;
  color: #d8ccef;
  font-size: 1.08rem;
}

.about-section--contact a:not(.button) {
  color: #c99fff;
  font-weight: 800;
}

.sr-anchor {
  position: relative;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.impact-hero {
  position: relative;
  min-height: 620px;
  padding: 132px 32px 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 30%, rgba(106, 76, 255, 0.36), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(41, 140, 255, 0.24), transparent 24rem),
    linear-gradient(180deg, rgba(5, 5, 10, 0.82), rgba(5, 5, 10, 0.97)),
    url("../images/home-hero-concert.png") center 36% / cover no-repeat;
}

.impact-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  content: "";
  background: linear-gradient(180deg, transparent, #05050a);
}

.impact-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1060px);
  margin: 0 auto;
  text-align: center;
}

.impact-hero h1 {
  margin: 0 auto;
  max-width: 1040px;
  color: #fff;
  font-size: clamp(3.25rem, 5.25vw, 6.15rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.impact-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px auto 0;
  color: #eee7ff;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.56;
}

.impact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.impact-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 64px, 1120px);
  margin: -48px auto 42px;
  overflow: hidden;
  border: 1px solid rgba(167, 116, 255, 0.26);
  border-radius: 8px;
  background: rgba(167, 116, 255, 0.22);
}

.impact-band article {
  min-height: 132px;
  padding: 28px;
  background: rgba(11, 9, 21, 0.92);
}

.impact-band strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
}

.impact-band span {
  display: block;
  margin-top: 12px;
  color: #d8ccef;
  line-height: 1.5;
}

.impact-card {
  min-height: 300px;
}

.impact-donation {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: stretch;
}

.impact-donation p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: #d8ccef;
  font-size: 1.08rem;
  line-height: 1.72;
}

.donation-panel {
  padding: 32px;
  border: 1px solid rgba(167, 116, 255, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(103, 50, 211, 0.34), rgba(11, 9, 21, 0.92)),
    rgba(11, 9, 21, 0.9);
}

.donation-panel strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
}

.donation-panel ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  color: #eee7ff;
  list-style: none;
}

.donation-panel li {
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}

.donation-panel li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #9d58ff;
  content: "";
}

.careers-hero,
.job-detail-hero {
  position: relative;
  padding: 122px 32px 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 28%, rgba(91, 61, 255, 0.36), transparent 28rem),
    linear-gradient(180deg, rgba(5, 5, 10, 0.9), rgba(5, 5, 10, 0.98)),
    url("../images/home-hero-concert.png") center 32% / cover no-repeat;
}

.careers-hero::after,
.job-detail-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  content: "";
  background: linear-gradient(180deg, transparent, #05050a);
}

.careers-hero__inner,
.job-detail-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.careers-hero__inner {
  text-align: center;
}

.careers-hero h1,
.job-detail-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.1rem, 5vw, 5.9rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.careers-hero p:not(.eyebrow),
.job-detail-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px auto 0;
  color: #eee7ff;
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
  line-height: 1.56;
}

.job-detail-hero p:not(.eyebrow) {
  margin-left: 0;
}

.jobs-section,
.job-layout {
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
  padding: 72px 0;
}

.jobs-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.jobs-section__header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.jobs-section__header > span {
  color: #c7afff;
  font-weight: 800;
}

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

.job-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(167, 116, 255, 0.24);
  border-radius: 8px;
  background: rgba(13, 11, 24, 0.88);
}

.job-card__meta,
.job-card__actions span,
.back-link,
.application-panel__note {
  color: #bda8ef;
  font-size: 0.92rem;
  font-weight: 700;
}

.job-card h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 1.4rem;
}

.job-card p:not(.job-card__meta) {
  max-width: 720px;
  margin: 12px 0 0;
  color: #d8ccef;
  line-height: 1.56;
}

.job-card__actions {
  display: grid;
  justify-items: end;
  gap: 16px;
}

.empty-state {
  padding: 36px;
  border: 1px solid rgba(167, 116, 255, 0.24);
  border-radius: 8px;
  background: rgba(13, 11, 24, 0.88);
  text-align: center;
}

.empty-state h3 {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
}

.empty-state p {
  margin: 12px 0 0;
  color: #d8ccef;
}

.back-link {
  display: inline-block;
  margin-bottom: 34px;
}

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

.job-facts span {
  padding: 10px 14px;
  border: 1px solid rgba(167, 116, 255, 0.3);
  border-radius: 999px;
  color: #eee7ff;
  background: rgba(13, 11, 24, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.job-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 34px;
  align-items: start;
}

.job-description,
.application-panel {
  border: 1px solid rgba(167, 116, 255, 0.24);
  border-radius: 8px;
  background: rgba(13, 11, 24, 0.88);
}

.job-description {
  padding: 38px;
}

.job-description h2,
.application-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.2;
}

.job-description h2:not(:first-child) {
  margin-top: 36px;
}

.job-description p {
  margin: 18px 0 0;
  color: #d8ccef;
  line-height: 1.72;
}

.application-panel {
  position: sticky;
  top: 24px;
  padding: 28px;
}

.application-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.application-form label {
  display: grid;
  gap: 8px;
  color: #f4efff;
  font-weight: 750;
}

.application-form input,
.application-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px 13px;
  border: 1px solid rgba(167, 116, 255, 0.32);
  border-radius: 6px;
  color: #fff;
  background: rgba(5, 5, 10, 0.72);
  font: inherit;
}

.application-form input[type="file"] {
  padding: 10px;
}

.application-form textarea {
  resize: vertical;
}

.field-error,
.form-errors {
  color: #ffb4c8;
  font-size: 0.88rem;
}

.success-message {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(78, 217, 152, 0.34);
  border-radius: 8px;
  background: rgba(31, 109, 74, 0.18);
}

.success-message h2 {
  font-size: 1.15rem;
}

.success-message p {
  margin: 10px 0 0;
  color: #d8ccef;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: auto 1fr;
  }

  .nav__links--left {
    display: none;
  }
}

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

  .nav {
    width: min(100% - 40px, 1500px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 24px;
  }

  .brand {
    justify-content: center;
  }

  .nav__links--right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav__links--right a:not(.button) {
    display: none;
  }

  .hero__content {
    margin-top: 92px;
  }

  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 560px;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(88px, 1fr));
  }

  .about-section--split,
  .about-points,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .about-points article,
  .value-card {
    min-height: 0;
  }

  .about-section--contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .impact-band,
  .impact-donation {
    grid-template-columns: 1fr;
  }

  .impact-band {
    margin-top: -28px;
  }

  .job-layout {
    grid-template-columns: 1fr;
  }

  .application-panel {
    position: static;
  }
}

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

  .hero__backdrop {
    background-position: center top;
  }

  .brand__mark,
  .brand__mark svg {
    width: 34px;
    height: 34px;
  }

  .brand__text {
    font-size: 1.65rem;
  }

  .button {
    min-width: min(100%, 248px);
  }

  .button--small {
    min-width: 146px;
  }

  .hero__content h1 {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    width: min(100%, 280px);
  }

  .feature-strip {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 320px);
    margin-top: 46px;
  }

  .categories {
    padding-inline: 18px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(88px, 1fr));
    gap: 20px 12px;
  }

  .about-hero {
    min-height: 500px;
    padding: 92px 18px 62px;
  }

  .about-section {
    width: min(100% - 36px, 1120px);
    padding: 56px 0;
  }

  .about-section--contact {
    padding: 28px;
  }

  .impact-hero {
    min-height: 620px;
    padding: 96px 18px 70px;
  }

  .impact-hero h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .impact-hero__actions .button {
    width: min(100%, 280px);
  }

  .impact-band {
    width: min(100% - 36px, 1120px);
  }

  .impact-band article,
  .donation-panel {
    padding: 24px;
  }

  .careers-hero,
  .job-detail-hero {
    padding: 92px 18px 66px;
  }

  .jobs-section,
  .job-layout {
    width: min(100% - 36px, 1120px);
    padding: 52px 0;
  }

  .jobs-section__header,
  .job-card {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .job-card__actions {
    justify-items: start;
  }

  .job-description,
  .application-panel {
    padding: 24px;
  }
}
