: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: 900px;
  padding-bottom: clamp(72px, 8vw, 118px);
  isolation: isolate;
  background: #05050a;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/home-hero-concert.2e579395a461.png");
  background-position: center top;
  background-size: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.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%);
  animation: softPulse 7s ease-in-out infinite;
}

.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;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(112, 48, 255, 0.32);
}

.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;
  animation: riseIn 760ms ease-out both;
}

.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__content--interview {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  width: min(100% - 72px, 1280px);
  margin-top: 110px;
  text-align: left;
}

.hero__copy {
  min-width: 0;
}

.hero__copy .eyebrow {
  width: auto;
  margin: 0 0 16px;
  color: #d9bdff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__copy p {
  margin-top: 24px;
}

.hero__content--interview .hero__actions {
  justify-content: flex-start;
}

.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);
  animation: riseIn 760ms ease-out 120ms both;
}

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

.agent-callout--wide {
  grid-column: 1 / -1;
  width: min(100%, 900px);
  margin-top: 0;
  justify-self: center;
}

.athena-chat {
  display: grid;
  gap: 16px;
  min-width: 0;
  min-height: 620px;
  padding: 18px;
  border: 1px solid rgba(205, 168, 255, 0.32);
  border-radius: 8px;
  background: rgba(7, 8, 18, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.athena-chat__header,
.athena-draft__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.athena-chat__header h2 {
  margin: 4px 0 0;
  font-size: clamp(1.28rem, 1.6vw, 1.62rem);
  letter-spacing: 0;
}

.athena-chat__header .agent-callout__link {
  margin-top: 0;
  white-space: nowrap;
}

.athena-chat__log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 238px;
  overflow-y: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.athena-chat__message {
  width: min(86%, 520px);
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.athena-chat__message--user {
  align-self: flex-end;
  background: rgba(141, 77, 255, 0.28);
}

.athena-chat__message strong {
  display: block;
  color: #dac3ff;
  font-size: 0.78rem;
}

.athena-chat__message p {
  width: auto;
  margin: 5px 0 0;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.4;
  text-wrap: auto;
}

.athena-chat__form {
  display: block;
}

.athena-chat__composer {
  position: relative;
  border: 1px solid rgba(205, 168, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)),
    rgba(10, 11, 24, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.athena-chat__composer:focus-within {
  border-color: #cda8ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
    rgba(12, 12, 28, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 3px rgba(205, 168, 255, 0.14);
}

.athena-chat__form textarea {
  display: block;
  width: 100%;
  min-height: 88px;
  max-height: 180px;
  resize: vertical;
  padding: 16px 66px 16px 16px;
  border: 0;
  color: #fff;
  font: inherit;
  line-height: 1.4;
  background: transparent;
  outline: none;
}

.athena-chat__form textarea::placeholder {
  color: rgba(235, 227, 255, 0.58);
}

.athena-chat__send {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #7a3cff, #bd54ff);
  box-shadow:
    0 14px 34px rgba(100, 43, 255, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.athena-chat__send:hover,
.athena-chat__send:focus-visible {
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.48);
  background: linear-gradient(135deg, #8750ff, #cf6aff);
  box-shadow:
    0 18px 42px rgba(100, 43, 255, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  outline: none;
}

.athena-chat__send svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.athena-chat__send:disabled {
  cursor: progress;
  opacity: 0.62;
}

.athena-chat__meter {
  color: #d9d0f4;
  font-size: 0.88rem;
  line-height: 1.4;
}

.athena-draft {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.athena-draft[hidden] {
  display: none;
}

.athena-draft__header span {
  color: #fff;
  font-weight: 800;
}

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

.athena-draft__grid div {
  min-width: 0;
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.athena-draft__grid span,
.athena-draft__grid strong {
  display: block;
}

.athena-draft__grid span {
  color: #cdb9ef;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.athena-draft__grid strong {
  margin-top: 6px;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .hero__content--interview {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 760px);
    text-align: center;
  }

  .hero__content--interview .hero__actions {
    justify-content: center;
  }

  .athena-chat {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    text-align: left;
  }

  .athena-draft__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 28px, 1500px);
  }

  .nav__links--right {
    gap: 8px;
  }

  .nav__links--right .button {
    min-width: 0;
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .athena-chat {
    min-height: 0;
    padding: 14px;
  }

  .athena-chat__header,
  .athena-draft__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .athena-chat__log {
    height: 230px;
    padding: 12px;
  }

  .athena-chat__message {
    width: 94%;
  }
}

.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: clamp(88px, 8vw, 126px) auto 0;
  animation: riseIn 760ms ease-out 220ms both;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 170px;
  transition: transform 180ms ease, color 180ms ease;
}

.feature:hover {
  transform: translateY(-4px);
}

.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-shell .button--outline {
  border-color: #8f79ff;
  color: #4f35d7;
  background: #fff;
  box-shadow: 0 10px 24px rgba(79, 53, 215, 0.1);
}

.manager-shell .button--outline:hover,
.manager-shell .button--outline:focus-visible {
  border-color: #4f35d7;
  color: #fff;
  background: #4f35d7;
  box-shadow: 0 14px 32px rgba(79, 53, 215, 0.2);
}

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

.embed-panel {
  display: grid;
  gap: 14px;
}

.embed-panel__snippet {
  margin-top: 4px;
}

.embed-panel__snippet textarea {
  min-height: 88px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.84rem;
  line-height: 1.5;
  white-space: pre;
}

.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--new {
  border-color: #d7d0e3;
  color: #4b425f;
  background: #f8f6fc;
}

.status-pill--reviewing {
  border-color: #b9d5ff;
  color: #1f4fa8;
  background: #eff5ff;
}

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

.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: var(--profile-text, #221633);
  background: var(--profile-bg, #f8f6fb);
  font-family: var(--profile-font, Inter, ui-sans-serif, system-ui, sans-serif);
}

body.public-profile-page {
  color: var(--profile-on-bg, var(--profile-text, #221633));
  background: var(--profile-bg, #f8f6fb);
  font-family: var(--profile-font, Inter, ui-sans-serif, system-ui, sans-serif);
}

body.public-profile-page .site-shell {
  background: var(--profile-bg, #f8f6fb);
}

body.public-profile-page .site-footer {
  color: var(--profile-on-bg, var(--profile-text, #221633));
  border-top-color: color-mix(in srgb, var(--profile-on-bg, #221633) 18%, transparent);
  background: var(--profile-bg, #f8f6fb);
}

body.public-profile-page .site-footer__brand,
body.public-profile-page .site-footer__links {
  color: var(--profile-on-bg, var(--profile-text, #221633));
}

body.public-profile-page .site-footer__brand span {
  color: var(--profile-accent, #5527ff);
}

.public-profile .nav--light {
  color: var(--profile-on-bg, var(--profile-text, #221633));
}

.public-profile .nav--light .brand__text,
.public-profile .nav--light .nav__links,
.public-profile .nav--light .nav__user {
  color: var(--profile-on-bg, var(--profile-text, #221633));
}

.public-profile .nav--light .brand__text span {
  color: var(--profile-accent, #5527ff);
}

.public-profile .nav--light .nav__user {
  border-color: color-mix(in srgb, var(--profile-on-bg, #221633) 42%, transparent);
}

.public-profile .nav--light .button--outline {
  color: var(--profile-on-bg, var(--profile-text, #221633));
  border-color: color-mix(in srgb, var(--profile-on-bg, #221633) 42%, transparent);
  background: color-mix(in srgb, var(--profile-bg, #f8f6fb) 82%, transparent);
}

.public-profile .nav--light .button--solid {
  color: var(--profile-bg, #f8f6fb);
  background: var(--profile-button, var(--profile-accent, #5527ff));
}

.public-profile .nav--light .nav__user:hover,
.public-profile .nav--light .nav__user:focus-visible {
  color: var(--profile-bg, #f8f6fb);
  border-color: var(--profile-accent, #5527ff);
  background: var(--profile-accent, #5527ff);
}

.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 color-mix(in srgb, var(--profile-accent, #5527ff) 18%, transparent);
}

.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, var(--profile-accent, #5527ff) 0%, var(--profile-button, #8b39ff) 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: var(--profile-muted, #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 color-mix(in srgb, var(--profile-accent, #5527ff) 22%, transparent);
  border-radius: 6px;
  color: var(--profile-text, #332945);
  background: var(--profile-surface, #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: var(--profile-muted, #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 color-mix(in srgb, var(--profile-accent, #5527ff) 16%, transparent);
  border-radius: 8px;
  background: var(--profile-surface, #fff);
}

.public-profile__event img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: 6px;
  object-fit: cover;
  background: color-mix(in srgb, var(--profile-accent, #5527ff) 12%, var(--profile-surface, #fff));
}

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

.public-profile__event p {
  color: var(--profile-muted, #61586f);
  line-height: 1.5;
}

.public-profile__event dl {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 16px 0 0;
  color: var(--profile-muted, #61586f);
}

.public-profile__event dt {
  color: var(--profile-text, #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 color-mix(in srgb, var(--profile-accent, #5527ff) 28%, transparent);
  border-radius: 8px;
  background: var(--profile-surface, #fff);
}

.public-profile__empty span {
  color: var(--profile-muted, #6c627a);
  font-weight: 600;
}

.public-profile--poster .public-profile__header {
  align-items: flex-start;
  padding: clamp(28px, 5vw, 54px);
  border: 3px solid var(--profile-accent, #5527ff);
  border-radius: 8px;
  background: var(--profile-surface, #fff);
  box-shadow: 12px 12px 0 var(--profile-button, #5527ff);
}

.public-profile--poster h1 {
  max-width: 820px;
  text-transform: uppercase;
}

.public-profile--zine .public-profile__header,
.public-profile--zine .public-profile__event,
.public-profile--zine .public-profile__empty {
  border-width: 2px;
  border-color: var(--profile-text, #221633);
  box-shadow: 6px 6px 0 var(--profile-accent, #5527ff);
}

.public-profile--zine .public-profile__identity img,
.public-profile--zine .public-profile__identity span {
  border-radius: 8px;
}

.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 {
  position: sticky;
  top: 24px;
  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-section-nav {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #ece7f4;
}

.profile-section-nav__link {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #4c435e;
  font-weight: 800;
  line-height: 1.2;
}

.profile-section-nav__link:hover,
.profile-section-nav__link:focus-visible {
  color: #2f1ca8;
  background: #f8f5ff;
}

.profile-section-nav__link.is-active {
  border-color: #d9cff3;
  color: #2f1ca8;
  background: #f3efff;
  box-shadow: inset 4px 0 0 #6d3cff;
}

.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-panel[hidden] {
  display: none;
}

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

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

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

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

.profile-customizer__top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.profile-customizer__form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.profile-credit-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.profile-credit-panel > div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px;
  border: 1px solid #e3deeb;
  border-radius: 8px;
  background: #fff;
}

.profile-credit-panel span {
  color: #625970;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-credit-panel strong {
  color: #221633;
  font-size: 1.35rem;
}

.profile-credit-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.profile-credit-packages form {
  margin: 0;
}

.profile-customizer__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.profile-customizer__actions span {
  color: #625970;
  font-weight: 700;
}

.profile-customizer__publish {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #e3deeb;
  border-radius: 8px;
  background: #fff;
}

.profile-customizer__publish div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

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

.profile-customizer__publish span {
  color: #625970;
  font-weight: 700;
}

.profile-customizer__preview {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid color-mix(in srgb, var(--profile-accent, #5527ff) 18%, transparent);
  border-radius: 8px;
  color: var(--profile-text, #221633);
  background: var(--profile-bg, #f8f6fb);
  font-family: var(--profile-font, Inter, ui-sans-serif, system-ui, sans-serif);
}

.profile-customizer__preview-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-customizer__preview-header img,
.profile-customizer__preview-header > span {
  display: grid;
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  object-fit: cover;
  color: #fff;
  background: linear-gradient(135deg, var(--profile-accent, #5527ff), var(--profile-button, #8b39ff));
  font-size: 1.7rem;
  font-weight: 800;
}

.profile-customizer__preview strong {
  display: block;
  color: var(--profile-text, #221633);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  line-height: 1.05;
}

.profile-customizer__preview small,
.profile-customizer__preview p {
  margin: 0;
  color: var(--profile-muted, #61586f);
  line-height: 1.55;
  font-weight: 700;
}

.profile-customizer__preview-event {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 8px;
  background: var(--profile-surface, #fff);
}

.public-profile__draft-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 22px;
  padding: 12px 16px;
  border: 1px solid color-mix(in srgb, var(--profile-accent, #5527ff) 28%, transparent);
  border-radius: 8px;
  color: var(--profile-text, #221633);
  background: var(--profile-surface, #fff);
}

.public-profile__draft-banner span {
  color: var(--profile-muted, #61586f);
  font-weight: 700;
}

.profile-password__form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.profile-password__form .form-grid {
  align-items: start;
}

.profile-password__form .form-field {
  align-content: start;
}

.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,
  .profile-preview,
  .ticket-panel {
    position: static;
    height: auto;
  }

  .profile-api {
    grid-column: auto;
    padding-top: 0;
  }

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

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

  .profile-customizer {
    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%;
  }

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

  .form-grid,
  .profile-credit-panel,
  .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);
  box-shadow: 0 0 0 rgba(189, 150, 255, 0);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.feature:hover .feature__icon {
  box-shadow: 0 0 28px rgba(189, 150, 255, 0.22);
  transform: scale(1.04);
}

.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;
  position: relative;
  overflow: hidden;
  padding: 72px 32px 76px;
  background:
    radial-gradient(circle at 50% 0, rgba(117, 55, 199, 0.56), transparent 46rem),
    radial-gradient(circle at 16% 68%, rgba(55, 167, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(19, 8, 38, 0.95), #080711);
  text-align: center;
}

.categories::before {
  position: absolute;
  inset: 14px 8% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 168, 255, 0.48), transparent);
  content: "";
}

.categories::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background:
    radial-gradient(circle at 58% 20%, rgba(189, 150, 255, 0.12), transparent 20rem),
    linear-gradient(180deg, transparent, rgba(5, 5, 10, 0.26));
  content: "";
  pointer-events: none;
  animation: softPulse 8s ease-in-out infinite;
}

.categories h2 {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 900px;
  color: #f3ecff;
  font-size: clamp(1.55rem, 2.35vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(88px, 1fr));
  gap: 18px;
  width: min(100%, 1120px);
  margin: 46px auto 0;
}

.category {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 132px;
  padding: 22px 12px 18px;
  border: 1px solid rgba(189, 150, 255, 0.16);
  border-radius: 8px;
  color: #e4d8ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  font-size: 0.98rem;
  font-weight: 750;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
  animation: riseIn 680ms ease-out both;
  animation-delay: calc(var(--category-index, 0) * 45ms);
}

.category:nth-child(1) { --category-index: 0; }
.category:nth-child(2) { --category-index: 1; }
.category:nth-child(3) { --category-index: 2; }
.category:nth-child(4) { --category-index: 3; }
.category:nth-child(5) { --category-index: 4; }
.category:nth-child(6) { --category-index: 5; }
.category:nth-child(7) { --category-index: 6; }
.category:nth-child(8) { --category-index: 7; }
.category:nth-child(9) { --category-index: 8; }
.category:nth-child(10) { --category-index: 9; }
.category:nth-child(11) { --category-index: 10; }
.category:nth-child(12) { --category-index: 11; }
.category:nth-child(13) { --category-index: 12; }
.category:nth-child(14) { --category-index: 13; }
.category:nth-child(15) { --category-index: 14; }

.category:hover {
  border-color: rgba(205, 168, 255, 0.42);
  color: #ffffff;
  box-shadow: 0 22px 60px rgba(76, 32, 153, 0.22);
  transform: translateY(-6px);
}

.category__icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(189, 150, 255, 0.22);
  border-radius: 999px;
  background: rgba(26, 10, 53, 0.46);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.category:hover .category__icon {
  border-color: rgba(205, 168, 255, 0.58);
  background: rgba(87, 38, 166, 0.32);
  transform: scale(1.06) rotate(-2deg);
}

.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);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.platform-feature:hover {
  border-color: rgba(167, 116, 255, 0.46);
  box-shadow: 0 22px 64px rgba(18, 11, 45, 0.32);
  transform: translateY(-5px);
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045) translate3d(0, -10px, 0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

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

  .categories {
    padding: 60px 20px 66px;
  }

  .category {
    min-height: 118px;
  }
}

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

.auth-details {
  border-top: 1px solid rgba(167, 116, 255, 0.22);
  padding-top: 16px;
}

.auth-details summary {
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.auth-details .auth-form {
  margin-top: 16px;
}

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

.founder-section {
  width: min(100% - 64px, 1180px);
}

.founder-section__header {
  max-width: 820px;
}

.founder-section__header p:last-child {
  margin: 16px 0 0;
  color: #d8ccef;
  font-size: 1.12rem;
  font-weight: 700;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 34px;
  margin-top: 34px;
  padding: 34px;
  border: 1px solid rgba(167, 116, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 17, 35, 0.96), rgba(7, 7, 15, 0.98)),
    rgba(12, 10, 22, 0.9);
}

.founder-profile__intro {
  color: #d8ccef;
  font-size: 1.05rem;
  line-height: 1.72;
}

.founder-profile__intro p {
  margin: 0;
}

.founder-profile__intro p + p {
  margin-top: 22px;
}

.founder-profile__summary {
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.22;
  text-wrap: balance;
}

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

.founder-metrics article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(167, 116, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.founder-metrics strong,
.founder-metrics span {
  display: block;
}

.founder-metrics strong {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.founder-metrics span {
  margin-top: 12px;
  color: #d8ccef;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

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

.founder-highlights article {
  padding: 20px;
  border-top: 1px solid rgba(167, 116, 255, 0.28);
}

.founder-highlights span {
  color: #a673ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.founder-highlights p {
  margin: 12px 0 0;
  color: #eee7ff;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.52;
}

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

.legal-hero {
  position: relative;
  min-height: 460px;
  padding: 116px 32px 74px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 10, 0.76), rgba(5, 5, 10, 0.98)),
    linear-gradient(90deg, rgba(7, 21, 35, 0.9), rgba(56, 26, 96, 0.58)),
    url("../images/home-hero-concert.2e579395a461.png") center 36% / cover no-repeat;
}

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

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

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

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: #eee7ff;
  font-size: clamp(1.04rem, 1.35vw, 1.25rem);
  line-height: 1.6;
}

.legal-hero .legal-updated {
  color: #cbbbe8;
  font-size: 0.96rem;
  font-weight: 750;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: 44px;
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
  padding: 72px 0 92px;
}

.legal-summary {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(167, 116, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(26, 48, 76, 0.44), rgba(13, 12, 24, 0.9)),
    rgba(12, 10, 22, 0.82);
}

.legal-summary h2,
.legal-section h2 {
  margin: 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.legal-summary h2 {
  font-size: 1.32rem;
}

.legal-summary p {
  margin: 18px 0 0;
  color: #d8ccef;
  line-height: 1.66;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-section {
  padding: 30px;
  border: 1px solid rgba(167, 116, 255, 0.2);
  border-radius: 8px;
  background: rgba(12, 10, 22, 0.68);
}

.legal-section h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.legal-section ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding-left: 22px;
  color: #d8ccef;
  line-height: 1.68;
}

.legal-section li::marker {
  color: #bb95ff;
}

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

.pricing-hero {
  position: relative;
  min-height: 600px;
  padding: 126px 32px 92px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 10, 0.8), rgba(5, 5, 10, 0.96)),
    linear-gradient(90deg, rgba(5, 5, 10, 0.92), rgba(28, 76, 86, 0.48)),
    url("../images/home-hero-concert.2e579395a461.png") center 34% / cover no-repeat;
}

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

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

.pricing-hero h1,
.pricing-panel h2,
.pricing-comparison h2,
.pricing-example h2 {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.pricing-hero h1 {
  font-size: clamp(3.25rem, 5.25vw, 6.15rem);
  line-height: 0.98;
}

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

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

.pricing-panel,
.pricing-comparison,
.pricing-example {
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  gap: 58px;
  align-items: center;
  margin-top: -42px;
  padding: 46px;
  border: 1px solid rgba(167, 116, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 64, 68, 0.62), rgba(10, 9, 22, 0.96)),
    rgba(12, 10, 22, 0.88);
}

.pricing-panel__media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(172, 225, 218, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(42, 151, 154, 0.46), rgba(188, 93, 255, 0.28)),
    #101326;
}

.pricing-ticket {
  position: absolute;
  left: 50%;
  top: 48%;
  display: grid;
  gap: 12px;
  width: min(72%, 300px);
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #241b35;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.pricing-ticket span {
  color: #5f36d8;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-ticket strong {
  color: #241b35;
  font-size: 1.25rem;
  line-height: 1.22;
}

.pricing-ticket small {
  align-self: end;
  color: #584b68;
  font-size: 1.1rem;
  font-weight: 800;
}

.pricing-ticket--back {
  left: 36%;
  top: 44%;
  opacity: 0.78;
  transform: translate(-50%, -50%) rotate(-8deg) scale(0.88);
}

.pricing-ticket--side {
  left: 68%;
  top: 57%;
  opacity: 0.78;
  transform: translate(-50%, -50%) rotate(7deg) scale(0.86);
}

.pricing-panel h2,
.pricing-comparison h2,
.pricing-example h2 {
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.08;
}

.pricing-list {
  display: grid;
  margin-top: 28px;
}

.pricing-row {
  padding: 24px 0;
  border-top: 1px solid rgba(216, 204, 239, 0.22);
}

.pricing-row h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.2;
}

.pricing-row p {
  margin: 8px 0 0;
  color: #d8ccef;
  font-size: 1.08rem;
  line-height: 1.48;
}

.pricing-row small {
  display: block;
  margin-top: 10px;
  color: #a7e7df;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.pricing-comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: start;
  padding: 86px 0 42px;
}

.pricing-comparison p,
.pricing-example p {
  margin: 22px 0 0;
  color: #d8ccef;
  font-size: 1.08rem;
  line-height: 1.7;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid rgba(167, 116, 255, 0.28);
  border-radius: 8px;
  background: rgba(12, 10, 22, 0.82);
}

.comparison-table__row {
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 0.82fr;
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 18px 22px;
  border-top: 1px solid rgba(216, 204, 239, 0.16);
  color: #d8ccef;
}

.comparison-table__row:first-child {
  border-top: 0;
}

.comparison-table__row--head {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(167, 116, 255, 0.12);
}

.comparison-table strong {
  color: #a7e7df;
  font-size: 1.08rem;
}

.pricing-example {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 78px;
  padding: 42px;
  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));
}

.pricing-example > div {
  max-width: 760px;
}

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

.manager-shell .empty-state--manager {
  padding: 44px;
  border: 1px solid #e3deeb;
  background: #fff;
  color: #1d172a;
  box-shadow: 0 16px 48px rgba(42, 31, 74, 0.08);
}

.manager-shell .empty-state--manager h2,
.manager-shell .empty-state--manager h3 {
  margin: 0 0 8px;
  color: #221633;
}

.manager-shell .empty-state--manager p {
  margin: 0 0 16px;
  color: #61586f;
}

.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.2e579395a461.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 (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero__backdrop,
  .hero::after,
  .categories::after {
    animation: none !important;
    transform: none !important;
  }
}

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

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

@media (max-width: 900px) {
  .hero {
    min-height: 880px;
    padding-bottom: 78px;
  }

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

  .hero__content--interview {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 760px);
    text-align: center;
  }

  .hero__content--interview .hero__actions {
    justify-content: center;
  }

  .athena-chat {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    text-align: left;
  }

  .athena-draft__grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-section--split,
  .about-points,
  .founder-profile,
  .founder-highlights,
  .value-grid,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }

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

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

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

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

  .pricing-panel {
    gap: 28px;
    margin-top: -28px;
    padding: 32px;
  }

  .pricing-panel__media {
    min-height: 340px;
  }

  .pricing-example {
    align-items: flex-start;
    flex-direction: column;
  }

  .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: 0;
    padding-bottom: 64px;
  }

  .hero__backdrop {
    background-position: center top;
  }

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

  .brand__text {
    font-size: 1.65rem;
  }

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

  .nav__links--right {
    gap: 8px;
  }

  .nav__links--right .button {
    min-width: 0;
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

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

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

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

  .hero__actions {
    width: 100%;
  }

  .athena-chat {
    min-height: 0;
    padding: 14px;
  }

  .athena-chat__header,
  .athena-draft__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .athena-chat__log {
    height: 230px;
    padding: 12px;
  }

  .athena-chat__message {
    width: 94%;
  }

  .athena-draft__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .legal-hero {
    min-height: 460px;
    padding: 92px 18px 62px;
  }

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

  .founder-section {
    width: min(100% - 36px, 1180px);
  }

  .founder-profile {
    padding: 24px;
  }

  .founder-metrics {
    grid-template-columns: 1fr;
  }

  .founder-highlights article {
    padding: 18px 0;
  }

  .legal-shell {
    width: min(100% - 36px, 1180px);
    padding: 52px 0 72px;
  }

  .legal-section,
  .legal-summary {
    padding: 24px;
  }

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

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

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

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

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

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

  .pricing-panel,
  .pricing-example {
    padding: 24px;
  }

  .pricing-panel__media {
    min-height: 300px;
  }

  .pricing-ticket {
    width: min(78%, 260px);
    min-height: 168px;
    padding: 20px;
  }

  .comparison-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .comparison-table__row span,
  .comparison-table__row strong {
    min-width: 0;
  }

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