: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;
  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 {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #d8ccef;
  border: 1px solid rgba(216, 204, 239, 0.34);
  border-radius: 50%;
}

.nav__user svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav__user:hover,
.nav__user:focus-visible {
  color: #fff;
  border-color: rgba(157, 88, 255, 0.78);
  background: rgba(157, 88, 255, 0.16);
}

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

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

.nav--light .nav__user {
  border-color: #d8d2e5;
}

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

.site-footer {
  border-top: 1px solid rgba(168, 112, 255, 0.24);
  background: #05050a;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 96px, 1500px);
  margin: 0 auto;
  padding: 34px 0;
}

.site-footer__brand {
  font-size: 1.2rem;
  font-weight: 800;
}

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

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #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;
}

.agent-callout {
  display: grid;
  justify-items: center;
  width: min(100%, 720px);
  margin: 30px auto 0;
  padding: 20px 24px 22px;
  border: 1px solid rgba(205, 168, 255, 0.34);
  border-radius: 8px;
  color: #f8f4ff;
  background: rgba(6, 7, 18, 0.46);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.2);
  text-align: center;
  backdrop-filter: blur(10px);
}

.agent-callout__eyebrow {
  margin: 0;
  color: #cda8ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agent-callout h2 {
  margin: 7px 0 0;
  color: #fff;
  font-size: clamp(1.18rem, 1.4vw, 1.48rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.agent-callout p:not(.agent-callout__eyebrow) {
  width: min(100%, 620px);
  margin: 9px auto 0;
  color: #fbfaff;
  font-size: clamp(0.94rem, 0.95vw, 1.03rem);
  line-height: 1.45;
}

.agent-callout__capabilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-top: 12px;
  color: #dbc7ff;
  font-size: 0.86rem;
  font-weight: 800;
}

.agent-callout__capabilities span:not(:last-child)::after {
  margin-left: 16px;
  color: rgba(205, 168, 255, 0.56);
  content: "/";
}

.agent-callout__link {
  display: inline-flex;
  margin-top: 13px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.94rem;
  text-decoration: underline;
  text-decoration-color: rgba(205, 168, 255, 0.72);
  text-underline-offset: 5px;
}

.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;
  bottom: 18px;
  right: 18px;
  display: grid;
  gap: 8px;
  width: min(360px, calc(100vw - 36px));
  pointer-events: none;
}

.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;
  pointer-events: auto;
}

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

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

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

.manager-shell,
.public-event,
.marketplace-shell {
  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--dashboard {
  align-items: center;
}

.manager-header__primary-action {
  flex: 0 0 auto;
  min-width: 176px;
  min-height: 54px;
  padding: 0 30px;
  font-size: 1rem;
  white-space: nowrap;
}

.manager-header h1,
.manager-section-heading h2,
.dashboard-panel h2,
.builder-card h1,
.builder-section h2,
.public-event h1,
.public-event h2,
.marketplace-shell h1,
.marketplace-shell h2,
.event-card h3 {
  margin: 0;
  color: #221633;
  letter-spacing: 0;
}

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

.manager-section-heading {
  width: min(100%, 1120px);
  margin: 32px auto 16px;
}

.manager-section-heading h2,
.dashboard-panel h2 {
  font-size: 1.35rem;
}

.manager-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, 1120px);
  margin: 0 auto 18px;
}

.manager-tabs a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #d9d1e7;
  border-radius: 999px;
  color: #4b425f;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.manager-tabs a.is-active {
  border-color: #4f35d7;
  color: #fff;
  background: #4f35d7;
}

.manager-spaced {
  margin-top: 24px;
}

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

.event-table,
.empty-state,
.dashboard-grid,
.dashboard-layout,
.marketplace-header,
.marketplace-band,
.marketplace-content {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.dashboard-stat,
.dashboard-panel {
  border: 1px solid #e3deeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(42, 31, 74, 0.08);
}

.dashboard-stat {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 18px;
}

.dashboard-stat span,
.dashboard-panel__heading span,
.mini-stat-grid span,
.compact-list span,
.sales-chart time,
.sales-chart small,
.tool-cloud span,
.event-row__metrics span {
  color: #61586f;
  font-size: 0.82rem;
  font-weight: 750;
}

.dashboard-stat strong {
  color: #21172f;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
}

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

.dashboard-panel {
  min-width: 0;
  padding: 18px;
}

.dashboard-panel--wide {
  grid-column: 1 / -1;
}

.dashboard-panel__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.dashboard-panel__heading span {
  font-weight: 800;
}

.sales-chart {
  display: grid;
  gap: 10px;
}

.sales-chart__row {
  display: grid;
  grid-template-columns: 54px minmax(80px, 1fr) 128px 76px;
  align-items: center;
  gap: 12px;
}

.sales-chart__bar {
  display: block;
  width: var(--bar-width);
  min-width: 8px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f35d7, #1aa6a6);
}

.sales-chart strong,
.compact-list strong,
.mini-stat-grid strong {
  color: #21172f;
}

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

.mini-stat-grid div {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid #ebe7f2;
  border-radius: 8px;
  background: #faf9fd;
}

.compact-list {
  display: grid;
  gap: 10px;
}

.compact-list p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}

.tool-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-cloud span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #ded8e9;
  border-radius: 999px;
  background: #faf9fd;
}

.tool-cloud a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #c8bdeb;
  border-radius: 999px;
  color: #4f35d7;
  background: #f5f2ff;
  font-size: 0.82rem;
  font-weight: 800;
}

.event-row,
.event-card,
.marketplace-rail > div,
.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--dashboard {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr) auto auto auto;
}

.event-row__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
}

.my-events-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100%, 1120px);
  margin: 0 auto 18px;
}

.event-table--owned {
  display: grid;
  gap: 12px;
}

.my-event-row {
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto) auto;
}

.my-event-row__main,
.my-event-row__meta,
.my-event-row__actions {
  min-width: 0;
}

.my-event-row__main,
.my-event-row__meta {
  display: grid;
  gap: 6px;
}

.my-event-row__main span,
.my-event-row__meta span {
  color: #61586f;
  font-size: 0.86rem;
  font-weight: 750;
}

.my-event-row__meta {
  grid-template-columns: repeat(3, max-content);
  justify-content: end;
  gap: 8px;
}

.my-event-row__meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #ded8e9;
  border-radius: 999px;
  background: #faf9fd;
  white-space: nowrap;
}

.my-event-row__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.marketplace-header {
  padding: 42px 0 26px;
}

.marketplace-header h1 {
  max-width: 760px;
}

.marketplace-search {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) minmax(150px, 0.85fr) repeat(4, minmax(120px, 0.7fr)) auto;
  gap: 10px;
  align-items: end;
  margin-top: 24px;
}

.marketplace-search label {
  display: grid;
  gap: 7px;
  color: #332945;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.marketplace-band {
  padding: 24px 0;
  border-top: 1px solid #e3deeb;
}

.marketplace-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.marketplace-section-heading h2,
.marketplace-rail h2 {
  font-size: 1.1rem;
}

.marketplace-section-heading a {
  color: #4f35d7;
  font-weight: 800;
}

.marketplace-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.marketplace-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #d8d2e5;
  border-radius: 999px;
  color: #3c3551;
  background: #fff;
  font-weight: 800;
}

.marketplace-content {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding-top: 24px;
}

.marketplace-rail {
  display: grid;
  gap: 14px;
  align-content: start;
}

.marketplace-rail > div {
  padding: 16px;
  box-shadow: none;
}

.marketplace-rail a,
.marketplace-rail small {
  display: block;
}

.marketplace-rail a {
  padding: 10px 0;
  border-top: 1px solid #eee9f4;
  color: #221633;
  font-weight: 800;
}

.marketplace-rail small,
.marketplace-rail p {
  margin-top: 3px;
  color: #6c627a;
  font-size: 0.82rem;
  font-weight: 650;
}

.event-card-grid {
  display: grid;
  gap: 16px;
}

.event-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
}

.event-card > img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  background: #ebe6f3;
}

.event-card__body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.event-card h3 {
  font-size: 1.42rem;
  line-height: 1.12;
}

.event-card p {
  margin: 0;
  color: #61586f;
  line-height: 1.5;
}

.event-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.event-card dl div {
  min-width: 0;
  padding: 10px;
  border: 1px solid #eee9f4;
  border-radius: 6px;
  background: #fbfaff;
}

.event-card dt {
  color: #221633;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-card dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  color: #61586f;
  font-size: 0.88rem;
}

.event-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-card__actions form {
  margin: 0;
}

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

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

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

.event-row span,
.ticket-row span,
.ticket-row small,
.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;
}

.status-pill--cancelled,
.status-pill--canceled,
.status-pill--failed {
  border-color: #f0c4c4;
  color: #9a2f2f;
  background: #fff4f4;
}

.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: 100%;
  min-width: 0;
  margin: 0 auto 72px;
  padding: 0 clamp(24px, 4vw, 56px);
}

.builder-main > .nav {
  grid-template-columns: auto minmax(0, 1fr);
  width: min(100%, 1220px);
}

.builder-main > .nav .nav__links--left {
  display: none;
}

.builder-main > .nav .nav__links--right {
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 10px;
  white-space: normal;
}

.builder-section {
  width: min(100%, 980px);
  margin-right: auto;
  margin-left: auto;
  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--datetime {
  grid-template-columns: minmax(0, 1fr) minmax(110px, 0.36fr);
}

.form-field--datetime > span,
.form-field--datetime > small {
  grid-column: 1 / -1;
}

.form-field--datetime input {
  min-width: 0;
}

.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-grid--single {
  grid-template-columns: 1fr;
}

.form-field--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.form-field .form-help {
  color: #6c627a;
  font-weight: 600;
}

.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 small {
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.ticket-row span {
  flex: 0 0 auto;
  text-align: right;
}

.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;
}

.event-decision {
  margin: 30px 0;
}

.event-decision__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.event-decision__stats div,
.event-decision__details div {
  padding: 14px;
  border: 1px solid #e3deeb;
  border-radius: 8px;
  background: #fff;
}

.event-decision__stats span,
.event-decision__details dt {
  display: block;
  margin-bottom: 6px;
  color: #6c627a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-decision__stats strong {
  color: #221633;
  font-size: 1rem;
  line-height: 1.35;
}

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

.event-decision__details dd {
  margin: 0;
}

.event-section {
  margin-top: 30px;
}

.event-section h3,
.event-share h3 {
  margin: 18px 0 8px;
  color: #221633;
  font-size: 1rem;
}

.event-section a,
.event-facts a,
.event-share a {
  color: #4f35d7;
  font-weight: 800;
}

.event-organizer {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e3deeb;
  border-radius: 8px;
  background: #fff;
}

.event-organizer img,
.event-organizer span {
  display: grid;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  object-fit: cover;
  color: #fff;
  background: linear-gradient(135deg, #5527ff 0%, #bd5dff 100%);
  font-weight: 800;
}

.event-organizer strong {
  color: #221633;
}

.event-organizer p {
  margin: 6px 0 0;
}

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

.event-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: #ebe6f3;
}

.event-link-list,
.event-share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-url {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin: 8px 0 12px;
}

.share-url input {
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  border: 1px solid #d8d2e5;
  border-radius: 6px;
  color: #332945;
  background: #fff;
  font: inherit;
  font-size: 0.9rem;
}

.event-link-list a,
.event-share__buttons a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #d8d2e5;
  border-radius: 6px;
  background: #fff;
}

.registration-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e3deeb;
}

.registration-form h3 {
  margin: 0;
  color: #221633;
}

.registration-field {
  display: grid;
  gap: 7px;
  color: #332945;
  font-size: 0.9rem;
  font-weight: 800;
}

.registration-field span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.registration-field strong {
  color: #6c627a;
  font-size: 0.72rem;
  text-transform: uppercase;
}

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

.registration-field textarea {
  resize: vertical;
}

.registration-field--checkbox {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.registration-field--checkbox span {
  order: 2;
  justify-content: flex-start;
}

.registration-field--checkbox input {
  order: 1;
  width: 18px;
  min-height: 18px;
}

.registration-field small,
.registration-errors {
  color: #a33434;
  font-weight: 650;
}

.event-sponsors {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.event-sponsors img {
  max-width: 150px;
  max-height: 70px;
  padding: 10px;
  border: 1px solid #e3deeb;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

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

.event-share {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e3deeb;
}

.builder-section--share {
  display: grid;
  gap: 14px;
}

.event-actions-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e3deeb;
}

.event-actions-panel form {
  margin: 0;
}

.public-profile {
  min-height: 100vh;
  padding: 0 clamp(18px, 4vw, 48px) 70px;
  color: #221633;
  background: #f8f6fb;
}

.public-profile__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1120px);
  margin: 46px auto 0;
  padding-bottom: 28px;
  border-bottom: 1px solid #e3deeb;
}

.public-profile__identity {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.public-profile__identity img,
.public-profile__identity span {
  display: grid;
  flex: 0 0 auto;
  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.7rem;
  font-weight: 800;
}

.public-profile h1 {
  margin: 4px 0 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.public-profile__location {
  margin: 10px 0 0;
  color: #61586f;
  font-weight: 700;
}

.public-profile__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.public-profile__links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #d8d2e5;
  border-radius: 6px;
  color: #332945;
  background: #fff;
  font-weight: 800;
}

.public-profile__bio,
.public-profile__events {
  width: min(100%, 1120px);
  margin: 30px auto 0;
}

.public-profile__bio {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: #4b415d;
  font-size: 1.14rem;
  line-height: 1.65;
}

.public-profile__section-heading {
  margin-bottom: 18px;
}

.public-profile__section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.public-profile__event-grid {
  display: grid;
  gap: 16px;
}

.public-profile__event {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid #e3deeb;
  border-radius: 8px;
  background: #fff;
}

.public-profile__event img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: 6px;
  object-fit: cover;
  background: #ebe6f3;
}

.public-profile__event h3 {
  margin: 4px 0 8px;
  font-size: 1.35rem;
}

.public-profile__event p {
  color: #61586f;
  line-height: 1.5;
}

.public-profile__event dl {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 16px 0 0;
  color: #61586f;
}

.public-profile__event dt {
  color: #221633;
  font-weight: 800;
}

.public-profile__event dd {
  margin: 2px 0 0;
}

.public-profile__event-action {
  margin-top: 18px;
}

.public-profile__empty {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px dashed #cfc6de;
  border-radius: 8px;
  background: #fff;
}

.public-profile__empty span {
  color: #6c627a;
  font-weight: 600;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  align-items: start;
  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 {
  max-width: 100%;
  margin: 22px 0 10px;
  overflow: hidden;
  color: #221633;
  font-size: 2rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

.profile-public-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.profile-public-links a {
  overflow-wrap: anywhere;
  color: #4f35d7;
  font-size: 0.92rem;
  font-weight: 800;
}

.profile-actions {
  margin-top: 24px;
}

.profile-actions .button {
  border-color: #e05555;
  color: #fff;
  background: linear-gradient(135deg, #d94141 0%, #f26a4f 100%);
  box-shadow: 0 12px 28px rgba(217, 65, 65, 0.22);
}

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

.profile-api {
  grid-column: 2;
  padding-top: 32px;
}

.profile-domains {
  grid-column: 2;
}

.profile-api .builder-section__heading {
  align-items: flex-start;
}

.profile-api__summary {
  max-width: 560px;
  margin: 10px 0 0;
  color: #625970;
  line-height: 1.55;
  font-weight: 600;
}

.profile-api__button {
  flex: 0 0 auto;
  white-space: nowrap;
  border-color: #5527ff;
  color: #fff;
  background: linear-gradient(135deg, #5527ff 0%, #8b39ff 100%);
  box-shadow: 0 12px 28px rgba(85, 39, 255, 0.22);
}

.profile-api__body {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.profile-api__empty {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px dashed #cfc6de;
  border-radius: 8px;
  color: #332945;
  background: #fbfaff;
}

.profile-api__empty strong {
  color: #221633;
}

.profile-api__empty span {
  color: #6c627a;
  font-weight: 600;
}

.profile-api__link {
  justify-self: start;
  color: #4f35d7;
  font-weight: 800;
}

.profile-api__link:hover,
.profile-api__link:focus-visible {
  color: #2f1ca8;
}

.profile-domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.profile-domain-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 16px;
  border: 1px solid #e3deeb;
  border-radius: 8px;
  color: #332945;
  background: #fff;
}

.profile-domain-card--wide {
  grid-column: 1 / -1;
}

.profile-domain-card strong {
  color: #221633;
}

.profile-domain-card span {
  color: #625970;
  line-height: 1.45;
  font-weight: 600;
}

.profile-domain-card code {
  overflow-x: auto;
  padding: 8px 10px;
  border-radius: 6px;
  color: #251d32;
  background: #f1edf7;
  font-size: 0.86rem;
}

.profile-domain-card form {
  margin: 4px 0 0;
}

@media (max-width: 980px) {
  .builder-shell,
  .public-event__grid,
  .public-profile__event,
  .event-facts,
  .event-decision__stats,
  .event-decision__details,
  .event-gallery,
  .profile-layout,
  .dashboard-grid,
  .dashboard-layout,
  .marketplace-content,
  .event-card dl {
    grid-template-columns: 1fr;
  }

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

  .profile-api {
    grid-column: auto;
  }

  .profile-domains {
    grid-column: auto;
  }

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

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

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

  .my-event-row__meta {
    grid-template-columns: repeat(3, minmax(0, max-content));
    justify-content: start;
  }

  .my-event-row__actions {
    justify-content: flex-start;
  }

  .marketplace-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .manager-header__primary-action {
    align-self: flex-start;
  }

  .profile-api .builder-section__heading {
    align-items: stretch;
  }

  .public-profile__header,
  .public-profile__identity {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-profile__links {
    justify-content: flex-start;
  }

  .profile-api__button {
    width: 100%;
  }

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

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

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

  .event-card > img {
    min-height: 190px;
    aspect-ratio: 16 / 9;
  }

  .dashboard-panel__heading,
  .sales-chart__row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .sales-chart__bar {
    width: 100%;
  }

  .mini-stat-grid,
  .event-row__metrics {
    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;
}

.platform-suite {
  padding: 86px 32px 96px;
  background:
    radial-gradient(circle at 18% 0, rgba(55, 167, 255, 0.18), transparent 34rem),
    linear-gradient(180deg, #080711, #05050a 62%);
}

.platform-suite__header {
  width: min(100%, 920px);
  margin: 0 auto 36px;
  text-align: center;
}

.platform-suite__header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 4.2vw, 4.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.platform-suite__header p:last-child {
  max-width: 720px;
  margin: 20px auto 0;
  color: #d8ccef;
  font-size: 1.08rem;
  line-height: 1.62;
}

.platform-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.platform-feature {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(167, 116, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.platform-feature__heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-feature__heading span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(55, 167, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(55, 167, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 900;
}

.platform-feature h3 {
  margin: 0;
  color: #fff;
  font-size: 1.26rem;
  line-height: 1.15;
}

.platform-feature p {
  margin: 16px 0 0;
  color: #d8ccef;
  font-size: 0.95rem;
  line-height: 1.55;
}

.platform-feature ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.platform-feature li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(167, 116, 255, 0.28);
  border-radius: 999px;
  color: #f2ebff;
  background: rgba(5, 5, 10, 0.38);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.15;
}

@media (max-width: 1120px) {
  .platform-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .platform-suite {
    padding: 64px 20px 72px;
  }

  .platform-feature-grid,
  .category-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .platform-suite__header {
    text-align: left;
  }

  .platform-suite__header p:last-child {
    margin-left: 0;
  }

  .platform-feature {
    padding: 18px;
  }
}

.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,
.application-form select {
  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;
}

.support-hero {
  position: relative;
  padding: 118px 32px 82px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 10, 0.94), rgba(5, 5, 10, 0.62)),
    url("../images/home-hero-concert.png") center 42% / cover no-repeat;
}

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

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

.support-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.support-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 26px 0 0;
  color: #eee7ff;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.56;
}

.support-hero .button {
  margin-top: 28px;
}

.support-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.support-hero__actions .button {
  margin-top: 0;
}

.support-layout,
.faq-section,
.support-detail {
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 26px;
  align-items: start;
  padding: 72px 0 36px;
}

.support-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(167, 116, 255, 0.24);
  border-radius: 8px;
  background: rgba(13, 11, 24, 0.88);
}

.support-panel__header,
.support-detail__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.support-panel h2,
.support-detail h1,
.faq-section h2 {
  margin: 0;
  color: #fff;
}

.support-panel h2 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.support-panel__header > span {
  color: #c7afff;
  font-weight: 800;
}

.support-ticket-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.support-ticket-list--wide {
  margin-top: 24px;
}

.support-ticket-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(167, 116, 255, 0.22);
  border-radius: 8px;
  color: inherit;
  background: rgba(5, 5, 10, 0.44);
  text-decoration: none;
}

.support-ticket-card:hover {
  border-color: rgba(199, 175, 255, 0.58);
  background: rgba(33, 25, 56, 0.72);
}

.support-ticket-card strong {
  color: #fff;
  line-height: 1.35;
}

.support-ticket-card small,
.support-note,
.support-facts dd,
.support-filter label {
  color: #d8ccef;
}

.empty-state--compact {
  padding: 24px;
}

.faq-section {
  padding: 34px 0 78px;
}

.faq-section__header {
  margin-bottom: 24px;
}

.faq-section h2,
.support-detail h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
}

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

.faq-item {
  padding: 24px;
  border: 1px solid rgba(167, 116, 255, 0.24);
  border-radius: 8px;
  background: rgba(13, 11, 24, 0.88);
}

.faq-item h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 1.12rem;
}

.faq-item span {
  display: inline-flex;
  color: #b8f7d4;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-item p,
.support-panel p {
  color: #d8ccef;
  line-height: 1.65;
}

.faq-item p {
  margin: 12px 0 0;
}

.support-detail {
  padding: 92px 0 78px;
}

.support-detail__heading {
  margin-bottom: 28px;
}

.support-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 26px;
  align-items: start;
}

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

.support-facts div {
  padding: 14px;
  border: 1px solid rgba(167, 116, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 5, 10, 0.36);
}

.support-facts dt {
  margin-bottom: 6px;
  color: #bda8ef;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.support-facts dd {
  margin: 0;
  font-weight: 700;
}

.support-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(167, 116, 255, 0.24);
  border-radius: 8px;
  background: rgba(13, 11, 24, 0.88);
}

.support-filter label {
  display: grid;
  gap: 8px;
  min-width: min(100%, 260px);
  font-weight: 750;
}

.support-filter select {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(167, 116, 255, 0.32);
  border-radius: 6px;
  color: #fff;
  background: rgba(5, 5, 10, 0.72);
  font: inherit;
}

.support-signin {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(167, 116, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 5, 10, 0.44);
}

.support-signin h3 {
  margin: 0;
  color: #fff;
  font-size: 1.22rem;
}

.support-signin p,
.support-panel--guidance p {
  color: #d8ccef;
  line-height: 1.6;
}

.support-signin__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.status-pill--open {
  color: #f8e0a1;
  background: rgba(177, 119, 22, 0.22);
}

.status-pill--in_progress {
  color: #b9d5ff;
  background: rgba(61, 116, 255, 0.22);
}

.status-pill--waiting_on_user {
  color: #f3c7ff;
  background: rgba(180, 71, 217, 0.22);
}

.status-pill--resolved {
  color: #b9f4d5;
  background: rgba(31, 109, 74, 0.24);
}

.status-pill--closed {
  color: #d8ccef;
  background: rgba(216, 204, 239, 0.14);
}

@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;
  }

  .marketplace-search {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    width: min(100% - 40px, 1500px);
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__links {
    justify-content: flex-start;
  }
}

@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,
  .support-hero {
    padding: 92px 18px 66px;
  }

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

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

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

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

  .support-panel__header,
  .support-detail__heading,
  .support-facts {
    grid-template-columns: 1fr;
  }
}
