* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg-dark: #0f172a;
  --bg-darker: #020617;
  --text: #1a1a1a;
  --muted: #475569;
  --border: #e2e8f0;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --accent: #f59e0b;
  --accent-strong: #fbbf24;
  --max-width: 1120px;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

body {
  font-family: "DM Sans", -apple-system, sans-serif;
  color: var(--text);
  background: #111;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.site-header {
  width: 100%;
  z-index: 20;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.page-home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

body.page-home {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

body.page-home .site-shell {
  min-height: 100vh;
  min-height: 100dvh;
}

body.page-home .page-main {
  flex: 1;
  display: flex;
  background: transparent;
  min-height: min(100vh, 100dvh);
}

body.page-home .banner {
  flex: 1;
  width: 100%;
  min-height: min(100vh, 100dvh);
}

body:not(.page-home) .site-header {
  position: sticky;
  top: 0;
  background: rgba(2, 6, 23, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.18);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.25rem 0.85rem max(0.75rem, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.nav-links a[href="/about/"] {
  margin-left: 0.3in;
}

.nav-links a,
.nav-link-button {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.35rem 0;
  position: relative;
  white-space: nowrap;
}

.nav-link-button {
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active,
.nav-link-button:hover,
.nav-link-button.active {
  color: #fff;
}

.nav-links a::after,
.nav-link-button::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after,
.nav-link-button:hover::before,
.nav-link-button.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-header .nav-btn {
  font-size: 0.95rem;
  padding: 0.6rem 0.95rem;
}

.nav-btn.active {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.nav-spacer {
  flex: 1;
}

.nav-location {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
}

.nav-location label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-location select {
  min-width: 138px;
  padding: 0.5rem 1.85rem 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.nav-location select option {
  color: #0f172a;
}

.nav-btns,
.button-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-btns {
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.nav-menu,
.signup-menu {
  position: relative;
}

.nav-menu {
  display: inline-flex;
  align-items: center;
}

.nav-menu .signup-menu-trigger,
.nav-menu .nav-menu-trigger,
.signup-menu .signup-menu-trigger {
  cursor: pointer;
  padding-right: 1.65rem;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
}

.nav-menu .signup-menu-trigger::after,
.nav-menu .nav-menu-trigger::after,
.signup-menu .signup-menu-trigger::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: translateY(-58%) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-menu.is-open .signup-menu-trigger::after,
.nav-menu.is-open .nav-menu-trigger::after,
.signup-menu.is-open .signup-menu-trigger::after {
  transform: translateY(-38%) rotate(-135deg);
}

.nav-menu-panel,
.signup-menu-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  padding: 0.5rem;
  display: none;
  gap: 0.25rem;
  z-index: 30;
}

.nav-links .nav-menu-panel {
  top: calc(100% + 0.7rem);
  left: 0;
  right: auto;
}

.nav-menu.is-open .nav-menu-panel,
.nav-menu.is-open .signup-menu-panel,
.signup-menu.is-open .signup-menu-panel {
  display: grid;
}

.nav-menu-panel a,
.signup-menu-panel a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  white-space: nowrap;
}

.nav-menu-heading {
  display: block;
  padding: 0.55rem 0.75rem 0.25rem;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-menu-panel a:hover,
.nav-menu-panel a:focus-visible,
.signup-menu-panel a:hover,
.signup-menu-panel a:focus-visible {
  background: #f8fafc;
  color: #c2410c;
  outline: none;
}

.marketplace-subnav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}

.marketplace-subnav-inner {
  display: flex;
  gap: 0.45rem;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 0.05rem;
  scrollbar-width: thin;
}

.marketplace-subnav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.5rem 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.marketplace-subnav a:hover,
.marketplace-subnav a:focus-visible {
  border-color: #f59e0b;
  color: #9a3412;
  outline: none;
}

.marketplace-subnav a.active {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .nav-menu:hover .nav-menu-panel,
  .signup-menu:hover .signup-menu-panel {
    display: grid;
  }
}

.button,
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-links a:focus-visible,
.nav-link-button:focus-visible,
.button:focus-visible,
.nav-btn:focus-visible {
  outline: 3px solid rgba(251, 191, 36, 0.7);
  outline-offset: 3px;
}

.button-secondary,
.nav-btn--login {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(6px);
}

.button-secondary:hover,
.nav-btn--login:hover {
  background: rgba(255, 255, 255, 0.22);
}

.button-primary,
.nav-btn--signup {
  background: var(--accent);
  color: #1f1300;
  border: 1px solid transparent;
}

.button-primary:hover,
.nav-btn--signup:hover {
  background: var(--accent-strong);
}

.nav-btn--signup {
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.28);
}

.banner {
  min-height: 560px;
  background: #1a1a1a url("/assets/home-banner-acoustic-intimate.png") center center / cover no-repeat;
  position: relative;
  padding-top: 5.5rem;
}

.banner::before {
  content: "AI generated - for marketing purposes only";
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.7em;
  z-index: 3;
}

.image-with-disclaimer {
  position: relative;
  display: inline-block; /* Or block, depending on desired layout */
}

.image-disclaimer {
  position: absolute;
  bottom: 10px; /* Adjust as needed */
  right: 10px; /* Adjust as needed */
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.7em;
  z-index: 1; /* Ensure it's above the image */
}


.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, transparent 26%),
    linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, transparent 54%);
  pointer-events: none;
}

.banner-actions {
  position: absolute;
  left: 50%;
  bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% - 3rem);
  max-width: 900px;
}

.banner-actions .button {
  min-width: 180px;
}

.page-main {
  flex: 1;
  background: #fff;
}

.page-hero {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #111827 100%);
  color: #fff;
  padding: 5.5rem 1.5rem 3.5rem;
}

.page-hero-inner,
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero-panel {
  max-width: 760px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.page-hero-grid .page-hero-panel {
  max-width: none;
}

.page-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.48), transparent 45%);
  pointer-events: none;
}

.page-hero-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  z-index: 1;
  color: #fff;
}

.page-hero-caption strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.page-hero-caption span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-hero h1,
.section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero p,
.section-intro,
.lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: 4.5rem 1.5rem;
  background: #fff;
}

.section-alt {
  background: var(--surface-soft);
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section h2 {
  color: inherit;
  margin-bottom: 0.9rem;
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
  margin-bottom: 2rem;
}

.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.78);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-media-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.feature-media-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-media-card--wide img {
  aspect-ratio: 16 / 7;
}

.feature-media-card figcaption {
  padding: 1rem 1.15rem 1.15rem;
}

.feature-media-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #0f172a;
  font-size: 1rem;
}

.feature-media-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.eyebrow-row .eyebrow {
  margin-bottom: 0;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.impact-card {
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.impact-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #0f172a;
  font-size: 1rem;
}

.impact-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section-accent-band {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.section-highlight-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.section-highlight-copy {
  display: grid;
  gap: 1rem;
}

.callout-card {
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  border: 1px solid #fed7aa;
  box-shadow: 0 16px 38px rgba(245, 158, 11, 0.12);
}

.callout-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #9a3412;
  font-size: 1rem;
}

.callout-card p {
  color: #7c2d12;
}

.pro-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.pro-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 1.35rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.pro-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #c2410c;
  font-size: 0.86rem;
  font-weight: 800;
}

.pro-card h3 {
  margin-bottom: 0.55rem;
  color: #0f172a;
}

.pro-card p {
  color: var(--muted);
}

.quote-panel {
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #172033 100%);
  color: #fff;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.65;
}

.quote-panel strong {
  display: block;
  margin-top: 0.85rem;
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-panel--spaced {
  margin-top: 1.5rem;
}

.page-cities-hero {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.78) 100%);
}

.city-subnav-section {
  padding-top: 2rem;
  padding-bottom: 2.4rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.city-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.city-subnav a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.52rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.city-subnav a:hover {
  border-color: #f59e0b;
  color: #92400e;
}

.city-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.8rem;
}

.metric-pill {
  display: block;
  padding: 0.82rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: var(--muted);
}

.metric-pill strong {
  color: #0f172a;
}

.page-cities .feature-media-grid {
  margin-bottom: 1.5rem;
}

.section-city-bg {
  position: relative;
  overflow: hidden;
}

.section-city-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
}

.section-city-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
  pointer-events: none;
}

.section-city-bg .section-inner {
  position: relative;
  z-index: 1;
}

.section-city-bg--nightlife::before {
  background-image: url("/assets/venues-live-experience.png");
}

.section-city-bg--community::before {
  background-image: url("/assets/live-banner-local-entertainment.png");
}

.city-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.city-stat {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.city-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #0f172a;
}

.city-stat p {
  color: var(--muted);
}

.city-key-points {
  margin-top: 1.5rem;
}

.city-pillars {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.city-pillar {
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  border: 1px solid #dbe3ef;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.city-pillar h3 {
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.city-pillar p {
  color: var(--muted);
}

.city-checklist {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.card,
.panel,
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.card h3,
.panel h3,
.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.card p,
.panel p,
.step-card p,
.bullet-list li {
  color: var(--muted);
}

.section-dark .card p,
.section-dark .bullet-list li {
  color: rgba(255, 255, 255, 0.82);
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

.metric {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.bullet-list li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.6rem;
}

.step-grid {
  display: grid;
  gap: 1.25rem;
}

.step-card {
  position: relative;
}

.step-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #1f1300;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.signup-flow {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #111827 100%);
  color: #fff;
  text-align: center;
}

.signup-flow .section-intro {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.8);
}

.dreamify-steps {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 2rem auto 0;
}

.dreamify-step {
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.dreamify-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 0.45rem 0.9rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1f1300;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.dreamify-step h3 {
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  margin-bottom: 0.45rem;
}

.dreamify-step p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.process-step-page {
  text-align: center;
}

.process-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.process-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 600;
}

.process-pill.active {
  background: var(--accent);
  color: #1f1300;
  border-color: transparent;
}

.process-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.signup-choice-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.signup-choice-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup-choice-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  width: min(100%, 480px);
}

.signup-choice-buttons .button {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 140px;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
}

@media (max-width: 480px) {
  .signup-choice-buttons {
    flex-direction: column;
    width: min(100%, 340px);
  }

  .signup-choice-buttons .button {
    flex: none;
    width: 100%;
  }
}

/* Secondary buttons default to light-on-dark; this page is on white — restore contrast */
.signup-choice-buttons .button-secondary {
  background: var(--surface-soft);
  color: var(--text);
  border: 2px solid var(--border);
  backdrop-filter: none;
}

.signup-choice-buttons .button-secondary:hover {
  background: #fff;
  border-color: #cbd5e1;
  color: var(--text);
}

.signup-path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.signup-path-grid--single {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.signup-path-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 1.4rem;
  text-align: left;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.signup-path-card.active {
  border-color: rgba(251, 191, 36, 0.75);
  background: rgba(251, 191, 36, 0.12);
}

.signup-path-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.signup-path-card h3 {
  margin: 0.85rem 0 0.5rem;
  color: #fff;
}

.signup-path-card p,
.signup-path-card li {
  color: rgba(255, 255, 255, 0.82);
}

.signup-path-card .bullet-list {
  margin-top: 0.85rem;
}

.signup-path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.signup-note {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel {
  background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
}

.home-links {
  margin-top: -4rem;
  position: relative;
  z-index: 2;
}

.home-summary {
  margin-top: 3rem;
}

.page-talent {
  background: #f7f7f7;
}

.page-venues-setup {
  background: #f7f7f7;
}

.page-venues-setup .page-main {
  background: #f7f7f7;
}

.page-venues-setup .page-hero {
  background: linear-gradient(180deg, #0f172a 0%, #172033 100%);
}

.page-talent .page-main,
.page-talent-profile .page-main,
.page-booking .page-main,
.page-booking-feedback .page-main {
  background: #f7f7f7;
}

.page-talent .page-hero,
.page-talent-profile .page-hero,
.page-booking .page-hero,
.page-booking-feedback .page-hero {
  background: linear-gradient(180deg, #0f172a 0%, #172033 100%);
}

.hero-note {
  max-width: 720px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-metric strong {
  color: #fff;
}

.filter-toolbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.filter-field {
  display: grid;
  gap: 0.35rem;
}

.filter-field label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-left: 0.7rem;
}

.filter-field select,
.filter-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
}

.search-insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.search-insight-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.search-insight-card strong {
  display: block;
  margin-bottom: 0.22rem;
  color: #0f172a;
}

.search-insight-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.recommendation-banner {
  display: none;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
  border: 1px solid #fed7aa;
}

.recommendation-banner.active {
  display: grid;
}

.recommendation-banner strong {
  color: #9a3412;
}

.recommendation-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.recommendation-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.82rem;
  font-weight: 700;
}

.compare-tray {
  display: none;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.compare-tray.active {
  display: grid;
}

.compare-tray-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.compare-tray-head p {
  color: var(--muted);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.compare-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 0.95rem;
  background: #f8fafc;
  display: grid;
  gap: 0.5rem;
}

.compare-card strong {
  color: #0f172a;
}

.compare-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.compare-card .button {
  width: 100%;
}

.marketplace-shell {
  display: grid;
  gap: 1.25rem;
}

.marketplace-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.marketplace-copy {
  display: grid;
  gap: 0.4rem;
}

.marketplace-copy h2 {
  margin-bottom: 0;
}

.marketplace-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.marketplace-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 600;
}

.marketplace-toolbar .filter-field select {
  width: 100%;
  min-width: 140px;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.92rem;
}

.filter-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.talent-card {
  background: var(--surface);
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 0.85rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}

.talent-card-cover {
  position: relative;
  min-height: 150px;
  border-radius: 18px;
  padding: 0.85rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(135deg, #fb923c 0%, #f43f5e 50%, #7c3aed 100%);
  overflow: hidden;
}

.talent-card-cover::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(2px);
}

.talent-card-save {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.talent-card-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.talent-card-body {
  padding: 0.85rem 0.15rem 0.15rem;
}

.talent-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.talent-card.recommended-card {
  border-color: #fbbf24;
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.12);
}

.talent-card-header,
.talent-profile-head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.talent-card-header {
  justify-content: space-between;
}

.talent-card-summary {
  flex: 1;
}

.talent-avatar,
.talent-profile-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #f59e0b 0%, #fb7185 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.talent-avatar {
  width: 56px;
  height: 56px;
  font-size: 0.96rem;
  margin-top: -2rem;
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  position: relative;
  z-index: 1;
}

.talent-profile-avatar {
  width: 96px;
  height: 96px;
  font-size: 1.4rem;
}

.talent-card-header h3,
.talent-profile-copy h1 {
  margin-bottom: 0.3rem;
}

.talent-card-header h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.talent-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  margin-bottom: 0.15rem;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.availability-pill,
.recommendation-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.availability-pill {
  border: 1px solid #dbe3ee;
  background: #fff;
  color: #334155;
}

.availability-pill.available {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.availability-pill.limited {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a3412;
}

.availability-pill.unavailable {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.recommendation-pill {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

.talent-subtitle,
.talent-location {
  color: var(--muted);
}

.talent-subtitle,
.talent-location,
.talent-price {
  font-size: 0.9rem;
}

.talent-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin-top: 0.45rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.talent-rating strong {
  color: #111827;
}

.rating-value {
  color: #111827;
  font-weight: 700;
}

.rating-star {
  color: var(--accent);
  font-size: 1rem;
}

.page-hero .talent-rating strong,
.page-hero .rating-value,
.page-hero .talent-rating span:not(.rating-star),
.page-hero .talent-location {
  color: rgba(255, 255, 255, 0.86);
}

.talent-meta {
  display: grid;
  gap: 0.65rem;
  margin: 0.8rem 0 0.95rem;
}

.talent-meta p {
  color: var(--muted);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.talent-tags,
.profile-tag-list,
.review-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.talent-tag,
.profile-tag,
.review-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #0f172a;
  font-size: 0.8rem;
  font-weight: 600;
}

.talent-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid #f1f5f9;
}

.talent-price {
  color: var(--muted);
  font-size: 0.88rem;
}

.talent-price strong {
  color: var(--text);
  display: block;
  font-size: 0.97rem;
}

.talent-price span {
  display: block;
  margin-top: 0.08rem;
}

.talent-link {
  text-decoration: none;
}

.talent-card .button {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-size: 0.86rem;
}

.compare-toggle {
  min-width: 108px;
}

.talent-card .button-secondary,
.profile-side-panel .button-secondary,
.booking-card .button-secondary,
.booking-summary-card .button-secondary,
.feedback-card .button-secondary,
.thank-you-card .button-secondary {
  background: #fff;
  color: #0f172a;
  border: 1px solid #dbe3ee;
  backdrop-filter: none;
}

.talent-card .button-secondary:hover,
.profile-side-panel .button-secondary:hover,
.booking-card .button-secondary:hover,
.booking-summary-card .button-secondary:hover,
.feedback-card .button-secondary:hover,
.thank-you-card .button-secondary:hover {
  background: #f8fafc;
}

.results-summary {
  margin-bottom: 1.2rem;
  color: #6b7280;
  font-size: 0.94rem;
}

.profile-hero-card {
  padding: 1.1rem 1.1rem 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.profile-lead {
  max-width: 720px;
}

.profile-highlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-bottom: 1.1rem;
}

.profile-highlight {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 600;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.booking-progress-section {
  padding-top: 1.5rem;
  padding-bottom: 0;
}

.page-talent .booking-progress-section--under-nav,
.page-venues-setup .booking-progress-section--under-nav {
  padding: 0.85rem 1.5rem 1.1rem;
  margin-top: 0;
  background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
}

.page-talent .booking-progress-section--under-nav .booking-progress-shell,
.page-venues-setup .booking-progress-section--under-nav .booking-progress-shell {
  margin-bottom: 0;
}

.page-talent .booking-progress-section--under-nav .booking-progress-header h2,
.page-venues-setup .booking-progress-section--under-nav .booking-progress-header h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.booking-progress-shell {
  display: grid;
  gap: 1.25rem;
  background: #fff;
  border: 2px solid #d8e2ee;
  border-radius: 28px;
  padding: 1.35rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
}

.booking-progress-header {
  display: grid;
  gap: 0.35rem;
}

.booking-progress-header h2 {
  margin-bottom: 0;
}

.booking-progress-header p {
  color: var(--muted);
}

.booking-progress-header a {
  color: #c2410c;
  font-weight: 600;
}

.booking-progress-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.booking-progress-footer-note {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-progress-footer-note a {
  color: #c2410c;
  font-weight: 600;
}

.booking-progress-footer-note--accent {
  color: #0f172a;
}

.booking-progress-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.booking-step-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.booking-step-bar::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 19px;
  right: 19px;
  height: 3px;
  background: #e2e8f0;
  z-index: 0;
}

.booking-step-bar[data-progress="1"]::after,
.booking-step-bar[data-progress="2"]::after,
.booking-step-bar[data-progress="3"]::after,
.booking-step-bar[data-progress="4"]::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 19px;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b 0%, #fb7185 100%);
  z-index: 0;
}

.booking-step-bar[data-progress="1"]::after {
  width: 0;
}

.booking-step-bar[data-progress="2"]::after {
  width: calc(33.333% - 12px);
}

.booking-step-bar[data-progress="3"]::after {
  width: calc(66.666% - 6px);
}

.booking-step-bar[data-progress="4"]::after {
  width: calc(100% - 38px);
}

.booking-step-item {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  padding: 0.75rem;
  border-radius: 16px;
  border: 1px solid #dbe3ee;
  background: #fff;
}

.booking-step-node {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #dbe3ee;
  color: #64748b;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.booking-step-copy {
  display: grid;
  gap: 0.15rem;
}

.booking-step-label-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-step-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #0f172a;
}

.booking-step-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.booking-step-item.is-complete .booking-step-node,
.booking-step-item.is-current .booking-step-node {
  border-color: #f59e0b;
  color: #9a3412;
}

.booking-step-item.is-complete,
.booking-step-item.is-current {
  border-color: #f59e0b;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.12);
}

.booking-step-item.is-complete .booking-step-node {
  background: #fff7ed;
}

.booking-step-item.is-current .booking-step-node {
  background: #f59e0b;
  color: #1f1300;
}

.venue-workflow-list {
  counter-reset: vw;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 820px;
}

.venue-workflow-list li {
  counter-increment: vw;
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  border: 2px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  position: relative;
  padding-left: 3.25rem;
}

.venue-workflow-list li::before {
  content: counter(vw);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: #1f1300;
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
}

.venue-workflow-list strong {
  font-size: 1.05rem;
  color: #0f172a;
}

.venue-workflow-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.venue-setup-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #edf2f7;
}

.venue-setup-actions--wrap {
  justify-content: flex-end;
}

.venue-setup-hint {
  min-height: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.venue-setup-hint--warn {
  color: #b45309;
  font-weight: 600;
}

.artist-pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.artist-pick-item {
  cursor: pointer;
  margin: 0;
}

.artist-pick-item input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.artist-pick-card {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 2px solid #dbe3ee;
  background: #f8fafc;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  min-height: 100%;
}

.artist-pick-item input:focus-visible + .artist-pick-card {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

.artist-pick-item input:checked + .artist-pick-card {
  border-color: #f59e0b;
  background: #fffbeb;
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.18);
}

.artist-pick-name {
  font-weight: 800;
  color: #0f172a;
  font-size: 1.02rem;
}

.artist-pick-meta {
  font-size: 0.82rem;
  color: #64748b;
}

.artist-pick-rate {
  font-size: 0.88rem;
  font-weight: 700;
  color: #9a3412;
  margin-top: 0.25rem;
}

.venue-setup-review {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  text-align: left;
}

.venue-setup-review li {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: grid;
  gap: 0.25rem;
}

.venue-setup-review strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.venue-setup-review span {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.45;
}

.venue-setup-summary .booking-summary-list strong {
  display: block;
}

.booking-stack {
  display: grid;
  gap: 1.25rem;
}

.booking-card,
.booking-summary-card,
.feedback-card,
.thank-you-card {
  background: #fff;
  border: 2px solid #d8e2ee;
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
}

.booking-card h3,
.feedback-card h3,
.thank-you-card h3,
.booking-summary-card h3 {
  margin-bottom: 0.75rem;
}

.booking-intro {
  color: var(--muted);
  margin-bottom: 1rem;
}

.booking-step-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

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

.booking-field {
  display: grid;
  gap: 0.45rem;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-field label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #475569;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 2px solid #dbe3ee;
  background: #fff;
  color: #0f172a;
  font: inherit;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
}

.booking-field textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-textarea-compact {
  min-height: 88px !important;
}

.booking-field-group {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid #edf2f7;
}

.booking-field-group-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.booking-field-hint {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.booking-field input[type="file"] {
  width: 100%;
  padding: 0.65rem 0;
  font: inherit;
  font-size: 0.88rem;
  color: #475569;
}

.confirmation-specs-item .confirmation-specs-detail {
  margin-top: 0.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.booking-inline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.service-option {
  position: relative;
  display: block;
}

.service-option input {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #f59e0b;
  z-index: 2;
  cursor: pointer;
}

.service-option-card {
  display: grid;
  gap: 0.4rem;
  min-height: 132px;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid #dbe3ee;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.service-option-card strong {
  color: #0f172a;
}

.service-option-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-option input:checked + .service-option-card {
  border-color: #f59e0b;
  background: #fff7ed;
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.16);
  transform: translateY(-1px);
}

.selected-services-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.selected-service-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.booking-summary-card {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.booking-summary-list,
.confirmation-summary-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.booking-summary-list li,
.confirmation-summary-list li {
  display: grid;
  gap: 0.15rem;
  color: var(--muted);
  padding: 0.7rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.booking-summary-list strong,
.confirmation-summary-list strong {
  color: #0f172a;
}

.booking-summary-total {
  padding-top: 1rem;
  border-top: 1px solid #edf2f7;
}

.booking-summary-total strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.pricing-breakdown {
  display: grid;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid #edf2f7;
}

.pricing-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-line strong {
  color: #0f172a;
}

.pricing-line.total-line {
  padding-top: 0.85rem;
  border-top: 1px dashed #dbe3ee;
  font-size: 1rem;
}

.booking-payment-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.booking-process-card {
  background: #fff;
  border: 2px solid #dbe3ee;
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.booking-process-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

.booking-process-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.confirmation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
}

.thank-you-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.confirmation-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.feedback-stars {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.feedback-star-btn {
  min-width: 54px;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid #dbe3ee;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.feedback-star-btn:hover,
.feedback-star-btn.active {
  transform: translateY(-1px);
  border-color: #f59e0b;
  background: #fff7ed;
}

.feedback-meta {
  display: grid;
  gap: 0.85rem;
}

.feedback-status {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-weight: 600;
}

.talent-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
  gap: 1.5rem;
}

.talent-profile-copy {
  display: grid;
  gap: 0.9rem;
}

.talent-profile-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.profile-stat-grid,
.review-grid,
.availability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.profile-stat,
.availability-card,
.review-card {
  background: var(--surface);
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 1.1rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.profile-stat strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.profile-stat span,
.availability-card p,
.review-card p,
.review-card small {
  color: var(--muted);
}

.profile-side-panel {
  position: sticky;
  top: 6.5rem;
  align-self: start;
}

.profile-side-panel .panel {
  display: grid;
  gap: 1rem;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.profile-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.profile-list li {
  color: var(--muted);
}

.profile-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.review-card strong,
.availability-card strong {
  display: block;
  margin-bottom: 0.45rem;
}

.empty-state {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px dashed #d1d5db;
  color: var(--muted);
}

body.page-directory {
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 158, 11, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #f3f4f6 100%);
}

body.page-directory .page-main {
  background: transparent;
}

.page-directory .section:first-child {
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}

.directory-command-bar {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.15fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
}

.directory-command-title,
.directory-command-search {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.directory-command-title {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
}

.directory-command-title h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.directory-command-title p {
  max-width: 620px;
  color: #64748b;
  font-size: 0.98rem;
}

.directory-command-search {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0.55rem;
}

.directory-command-search button {
  display: grid;
  gap: 0.22rem;
  align-content: center;
  min-height: 76px;
  padding: 0.8rem 1rem;
  border: 0;
  border-right: 1px solid #e5e7eb;
  background: transparent;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  border-radius: 22px;
}

.directory-command-search button:last-child {
  border-right: 0;
}

.directory-command-search button:hover,
.directory-command-search button:focus-visible {
  background: #f8fafc;
  outline: none;
}

.directory-command-search span {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-command-search strong {
  overflow: hidden;
  color: #0f172a;
  font-size: 0.98rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.directory-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.28fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.section-inner:has(> .directory-layout),
.directory-layout {
  transition: grid-template-columns 0.2s ease, gap 0.2s ease;
}

[data-directory].filters-collapsed .directory-layout {
  grid-template-columns: minmax(0, 1fr);
}

[data-directory].filters-collapsed .directory-filter-card {
  display: none;
}

.directory-filter-card,
.directory-submit-card {
  display: grid;
  gap: 0.68rem;
}

.directory-filter-card {
  position: sticky;
  top: 6.5rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
  padding: 1rem;
  overflow: hidden;
}

.directory-results-panel {
  min-width: 0;
}

.directory-filter-card .eyebrow {
  color: #c2410c;
}

.directory-filter-card .filter-field {
  margin: 0;
}

.directory-filter-card .filter-field label {
  margin-bottom: 0.28rem;
  color: #64748b;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-filter-card h2 {
  margin-bottom: 0.1rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.directory-filter-card .filter-field select,
.directory-filter-card .filter-field input {
  border-color: #e5e7eb;
  border-radius: 14px;
  padding: 0.68rem 0.78rem;
  background: #fff;
  color: #0f172a;
  font-size: 0.86rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.03);
}

.directory-filter-card .filter-field select:focus,
.directory-filter-card .filter-field input:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
  outline: none;
}

.directory-filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.directory-filter-grid .filter-field {
  margin: 0;
}

.directory-results-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  flex-wrap: wrap;
}

.directory-results-head h2 {
  margin-bottom: 0.15rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.directory-results-head p {
  color: var(--muted);
  font-weight: 600;
}

.directory-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.directory-filter-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #dbe3ee;
  background: #111827;
  border-color: #111827;
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.directory-filter-toggle:hover {
  border-color: #f59e0b;
  background: #1f2937;
  color: #fff;
}

.directory-view-toggle {
  display: inline-flex;
  padding: 0.22rem;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.directory-view-toggle button {
  min-height: 34px;
  padding: 0.45rem 0.75rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.directory-view-toggle button.active {
  background: #111827;
  color: #fff;
}

.directory-clear-button {
  min-height: 34px;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.directory-clear-button:hover {
  border-color: #f59e0b;
  color: #9a3412;
}

.directory-sort label,
.directory-filter-label {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.directory-sort select {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #dbe3ee;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}

.directory-chip-panel {
  display: grid;
  gap: 0.5rem;
  padding-top: 0.2rem;
}

.directory-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.directory-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 30px;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.directory-chip span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  min-height: 24px;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
}

.directory-chip.active {
  border-color: #111827;
  background: #111827;
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.directory-chip.active span {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
}

.directory-active-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
}

.directory-active-summary span {
  min-height: 30px;
  padding: 0.35rem 0.65rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #475569;
  font-size: 0.8rem;
  font-weight: 800;
}

.directory-active-summary strong {
  color: #0f172a;
}

.directory-stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.directory-stat-card {
  position: relative;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.directory-stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #f59e0b, #f43f5e);
}

.directory-stat-card strong {
  display: block;
  margin-bottom: 0.15rem;
  color: #0f172a;
  font-size: 1.18rem;
}

.directory-stat-card span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 1rem;
}

[data-directory].filters-collapsed .directory-grid {
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
}

.directory-view-list .directory-grid {
  grid-template-columns: 1fr;
}

.directory-view-list .directory-card {
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  align-items: start;
}

.directory-view-list .directory-card > :not(.directory-card-cover) {
  grid-column: 2;
}

.directory-view-list .directory-card-cover {
  grid-row: 1 / span 8;
  min-height: 100%;
}

.directory-view-list .directory-card-cover img {
  min-height: 100%;
}

.directory-card {
  display: grid;
  gap: 0.72rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 0.72rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}

.directory-card.is-featured {
  border-color: #fed7aa;
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.12);
}

.directory-card:hover {
  transform: translateY(-3px);
  border-color: #fed7aa;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
}

.directory-card-cover {
  position: relative;
  min-height: 164px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.35), transparent 28%),
    linear-gradient(135deg, #fb923c 0%, #f43f5e 48%, #7c3aed 100%);
}

.directory-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.34));
  pointer-events: none;
}

.directory-card-cover img {
  width: 100%;
  height: 100%;
  min-height: 164px;
  object-fit: cover;
  opacity: 0.88;
  mix-blend-mode: screen;
}

.directory-card-cover--mic {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.3), transparent 30%),
    linear-gradient(135deg, #2563eb 0%, #7c3aed 52%, #f43f5e 100%);
}

.directory-card-cover--karaoke {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #111827 0%, #7c3aed 50%, #f59e0b 100%);
}

.directory-card-cover--patio,
.directory-card-cover--rooftop {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(135deg, #0f766e 0%, #22c55e 45%, #f59e0b 100%);
}

.directory-card-cover--learn {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(135deg, #0f172a 0%, #2563eb 48%, #22c55e 100%);
}

.directory-card-cover--talent {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(135deg, #111827 0%, #9333ea 50%, #f97316 100%);
}

.directory-card-cover--equipment {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.3), transparent 30%),
    linear-gradient(135deg, #020617 0%, #334155 48%, #f59e0b 100%);
}

.directory-listing-detail {
  padding-top: 2.5rem;
}

.directory-detail-shell {
  display: grid;
  gap: 1.5rem;
}

.directory-detail-header {
  display: grid;
  gap: 0.75rem;
}

.directory-detail-header h1 {
  max-width: 860px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.directory-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.directory-detail-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr);
  gap: 0.85rem;
}

.directory-detail-gallery img {
  width: 100%;
  min-height: 260px;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  background: #111827;
}

.directory-detail-stack {
  display: grid;
  gap: 0.85rem;
}

.directory-detail-stack img {
  min-height: 0;
}

.directory-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.directory-detail-sidebar {
  position: sticky;
  top: 6.5rem;
}

.directory-detail-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.directory-detail-list li {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e5e7eb;
  color: var(--muted);
}

.directory-detail-list strong {
  color: #0f172a;
}

.venue-schedule-panel {
  margin-top: 2rem;
}

.venue-card-calendar,
.venue-date-list {
  display: grid;
  gap: 0.7rem;
}

.venue-card-calendar {
  padding: 0.8rem;
  border-radius: 18px;
  background: #f8fafc;
  color: #475569;
  font-size: 0.88rem;
}

.venue-card-calendar strong {
  color: #0f172a;
}

.venue-date-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.32fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.venue-date-pill {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
  border-radius: 18px;
  background: #111827;
  color: #fff;
}

.venue-date-pill span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.venue-date-row h3 {
  margin: 0.45rem 0 0.25rem;
}

.venue-date-row p {
  color: var(--muted);
}

.directory-save,
.directory-cover-badge,
.directory-featured-badge,
.directory-date-badge {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.directory-save {
  border: 0;
  cursor: pointer;
}

.directory-save {
  top: 0.8rem;
  right: 0.8rem;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
}

.directory-save.is-saved {
  background: #fff7ed;
  color: #dc2626;
}

.directory-cover-badge {
  left: 0.8rem;
  bottom: 0.8rem;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  background: rgba(15, 23, 42, 0.76);
  color: #fff;
  font-size: 0.78rem;
}

.directory-featured-badge {
  left: 0.8rem;
  top: 0.8rem;
  min-height: 30px;
  padding: 0.3rem 0.65rem;
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.76rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.directory-date-badge {
  right: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  gap: 0.1rem;
  min-width: 84px;
  padding: 0.48rem 0.65rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.directory-date-badge small {
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 800;
}

.directory-card-top,
.directory-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.directory-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.directory-category,
.directory-city,
.directory-rating,
.directory-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.directory-rating {
  color: #0f172a;
}

.directory-rating small {
  margin-left: 0.15rem;
  color: #64748b;
}

.directory-category {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
}

.directory-city {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
}

.directory-venue,
.directory-schedule {
  color: #0f172a;
  font-weight: 700;
  margin: -0.2rem 0 0;
}

.directory-card-submeta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.directory-card-submeta span {
  min-height: 28px;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.76rem;
  font-weight: 800;
}

.directory-card-submeta span + span {
  background: #eff6ff;
  color: #1d4ed8;
}

.directory-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.directory-meta-grid span {
  display: grid;
  gap: 0.1rem;
  padding: 0.7rem;
  border-radius: 18px;
  background: #f8fafc;
  color: #475569;
  font-size: 0.8rem;
  line-height: 1.3;
}

.directory-meta-grid strong {
  color: #0f172a;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.directory-card p:not(.directory-venue):not(.directory-schedule) {
  color: var(--muted);
  line-height: 1.5;
}

.directory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.directory-tags span {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #334155;
  font-size: 0.76rem;
}

.directory-card-actions {
  padding-top: 0.15rem;
}

.directory-card-actions .button {
  min-height: 42px;
  flex: 1 1 135px;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
}

.directory-empty {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px dashed #d1d5db;
  color: var(--muted);
}

.directory-empty.active {
  display: block;
}

.site-footer {
  background: #ffffff;
  min-height: 0.5in;
  height: auto;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
}

.footer-image-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 4vw, 2.25rem);
  padding: 0.7rem 1.5rem;
  border-top: 1px solid #e8e8e8;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.footer-image-strip img {
  height: 32px;
  width: auto;
  max-width: min(112px, 22vw);
  object-fit: contain;
  opacity: 0.9;
}

@media (max-width: 480px) {
  .directory-stats-row {
    grid-template-columns: 1fr;
  }

  .footer-image-strip {
    gap: 0.65rem;
    padding: 0.6rem 1rem;
  }

  .footer-image-strip img {
    height: 26px;
    max-width: 24vw;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-inner {
  display: block;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 1.5rem;
}

.footer-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  font-weight: 600;
}

.footer-quick-links span {
  color: #64748b;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-quick-links a {
  color: #0f172a;
  text-decoration: none;
}

.footer-quick-links a:hover {
  color: #c2410c;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-column h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: #c2410c;
}

.footer-subheading {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  font-weight: 600;
}

.footer-sublinks {
  list-style: none;
  margin: 0.35rem 0 0;
  padding-left: 0.85rem;
  border-left: 2px solid #e5e7eb;
}

.footer-sublinks li + li {
  margin-top: 0.2rem;
}

.footer-sublinks a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-sublinks a:hover {
  color: #c2410c;
}

.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer .nav-logo {
  color: #0f172a;
}

.site-footer .nav-logo-text {
  color: #0f172a;
  text-shadow: none;
}

.venue-setup-subnav {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.venue-setup-subnav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
}

.venue-setup-subnav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.venue-setup-subnav a:hover {
  color: #0f172a;
}

.venue-setup-subnav a.is-active {
  color: #c2410c;
  border-bottom-color: #f59e0b;
}

.venue-setup-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.venue-setup-link-card.panel {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

@media (max-width: 1024px) {
  .nav {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 0.55rem;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    order: 3;
    gap: 1rem 1.25rem;
  }

  .nav-spacer {
    display: none;
  }

  .nav-location {
    order: 2;
  }

  .nav-btns {
    order: 2;
  }
}

@media (max-width: 780px) {
  .nav {
    justify-content: center;
  }

  .nav-location {
    width: 100%;
    justify-content: center;
    order: 2;
  }

  .nav-location select {
    width: min(100%, 260px);
  }

  .nav-btns {
    width: 100%;
    justify-content: center;
    order: 4;
    flex-wrap: nowrap;
  }

  .nav-btns .nav-btn {
    flex: 1 1 0;
    max-width: 180px;
  }

  .nav-menu,
  .signup-menu {
    width: min(100%, 300px);
  }

  .nav-menu {
    display: grid;
    justify-items: center;
  }

  .nav-menu .nav-menu-trigger {
    width: fit-content;
  }

  .nav-menu .nav-btn,
  .signup-menu .nav-btn {
    width: 100%;
  }

  .nav-menu-panel,
  .signup-menu-panel {
    right: auto;
    left: 0;
    width: 100%;
    min-width: 0;
  }

  .nav-links .nav-menu-panel {
    position: static;
    margin-top: 0.5rem;
  }

  .nav-menu-panel a,
  .signup-menu-panel a,
  .nav-menu-heading {
    white-space: normal;
    text-align: center;
  }

  .marketplace-subnav {
    padding-inline: 1rem;
  }

  .banner {
    min-height: 420px;
  }

  .page-hero-grid,
  .section-highlight-shell {
    grid-template-columns: 1fr;
  }

  .page-hero-media img {
    aspect-ratio: 16 / 11;
  }

  .impact-strip {
    grid-template-columns: 1fr;
  }

  .banner-actions {
    bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    width: calc(100% - 2rem);
  }

  .banner-actions .button {
    min-width: 0;
    width: 100%;
  }

  .page-hero {
    padding-top: 4.5rem;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .filter-toolbar {
    grid-template-columns: 1fr;
    border-radius: 24px;
    padding: 1rem;
  }

  .marketplace-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .talent-card-header,
  .talent-profile-head {
    flex-direction: column;
  }

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

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

  .directory-command-bar {
    grid-template-columns: 1fr;
  }

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

  .directory-command-search button {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .directory-command-search button:last-child {
    border-bottom: 0;
  }

  .directory-view-list .directory-card {
    grid-template-columns: 1fr;
  }

  .directory-view-list .directory-card > :not(.directory-card-cover) {
    grid-column: auto;
  }

  .directory-view-list .directory-card-cover {
    grid-row: auto;
    min-height: 132px;
  }

  .directory-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-meta-grid {
    grid-template-columns: 1fr;
  }

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

  .directory-filter-card {
    position: static;
  }

  .booking-layout,
  .confirmation-grid {
    grid-template-columns: 1fr;
  }

  .booking-step-bar {
    grid-template-columns: 1fr;
  }

  .booking-step-bar::before,
  .booking-step-bar::after {
    display: none;
  }

  .booking-step-item {
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
  }

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

  .profile-side-panel {
    position: static;
  }

  .booking-summary-card {
    position: static;
  }

  .home-links {
    margin-top: -2.5rem;
  }

  .setlist-song-table-head,
  .setlist-song-row {
    grid-template-columns: 1fr;
  }

  .setlist-song-num {
    display: none;
  }

  .setlist-journey {
    grid-template-columns: 1fr;
  }

  .setlist-journey::before {
    display: none;
  }
}

/* Set lists (talent / venues) */
body.page-setlists {
  background: #f7f7f7;
}

body.page-setlists .page-main {
  background: #f7f7f7;
}

body.page-setlists .page-hero {
  background: linear-gradient(180deg, #0f172a 0%, #172033 100%);
}

.talent-setlist-cta {
  margin-top: 1.25rem;
  max-width: 720px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.talent-setlist-cta a {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.talent-setlist-cta a:hover {
  color: #fde68a;
}

.setlist-workspace-inner {
  max-width: var(--max-width);
}

.setup-banner {
  grid-column: 1 / -1;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 0.92rem;
  line-height: 1.45;
  color: #1e293b;
}

.setup-banner strong {
  color: #0f172a;
}

body.page-setlists-setup .setlist-mode-bar {
  display: none;
}

body.page-setlists-setup .setlist-journey {
  margin-bottom: 1rem;
}

.publish-profile-status {
  flex-basis: 100%;
}

.talent-setlist-live-badge {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.88);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}

.profile-setlists-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1rem;
}

.profile-setlist-card .setlist-readonly-meta {
  margin-top: 0.35rem;
}

.profile-setlist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.85rem;
}

.setlist-mode-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 2px solid #d8e2ee;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.setlist-mode-copy h2 {
  margin-top: 0.35rem;
  font-size: 1.5rem;
}

.setlist-mode-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.35rem;
  background: #f8fafc;
  border-radius: 999px;
  border: 2px solid #dbe3ee;
}

.setlist-mode-btn {
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.setlist-mode-btn:hover {
  color: var(--text);
}

.setlist-mode-btn.active {
  background: var(--surface);
  color: var(--text);
  border: 1px solid #dbe3ee;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
}

.setlist-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1.35rem;
}

.setlist-journey::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  top: 1.15rem;
  height: 2px;
  background: #dbe3ee;
  z-index: 0;
}

.setlist-journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.85rem;
  border-radius: 16px;
  border: 2px solid #dbe3ee;
  background: #fff;
}

.setlist-journey-step strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.setlist-journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.setlist-journey-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  background: #fff;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 700;
}

.setlist-journey-step.is-current {
  border-color: #f59e0b;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.14);
}

.setlist-journey-step.is-current .setlist-journey-num {
  border-color: #f59e0b;
  background: #fff7ed;
  color: #9a3412;
}

.setlist-talent-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 2px solid #d8e2ee;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.setlist-talent-bar label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.setlist-talent-select,
.setlist-select {
  font: inherit;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  min-width: 200px;
}

.setlist-talent-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

.setlist-panel.is-hidden {
  display: none;
}

.setlist-toolbar {
  margin-bottom: 1rem;
}

.setlist-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.setlist-inline-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.setlist-legend {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 52rem;
  line-height: 1.55;
}

.setlist-song-editor {
  background: var(--surface);
  border: 2px solid #d8e2ee;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.setlist-song-table-head {
  display: grid;
  grid-template-columns: 36px minmax(120px, 1fr) minmax(160px, 1.2fr) minmax(140px, 1fr);
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--surface-soft);
  border-bottom: 2px solid #dbe3ee;
}

.setlist-song-rows {
  display: flex;
  flex-direction: column;
}

.setlist-song-row {
  display: grid;
  grid-template-columns: 36px minmax(120px, 1fr) minmax(160px, 1.2fr) minmax(140px, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid #dbe3ee;
}

.setlist-song-row:last-child {
  border-bottom: none;
}

.setlist-song-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  padding-top: 0.45rem;
  text-align: center;
}

.setlist-input,
.setlist-textarea {
  font: inherit;
  font-size: 0.88rem;
  width: 100%;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  border: 2px solid #dbe3ee;
  background: #fff;
  resize: vertical;
}

.setlist-input:focus,
.setlist-textarea:focus,
.setlist-select:focus,
.setlist-talent-select:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.16);
}

.setlist-textarea {
  min-height: 3rem;
}

.setlist-save-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 1.25rem;
}

.setlist-status {
  font-size: 0.88rem;
  color: var(--muted);
}

.setlist-readonly {
  background: var(--surface);
  border: 2px solid #d8e2ee;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.setlist-readonly-head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.setlist-readonly-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.setlist-readonly-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 1rem;
}

.setlist-readonly-item {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dbe3ee;
}

.setlist-readonly-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.setlist-readonly-item.is-placeholder {
  opacity: 0.65;
}

.setlist-readonly-title {
  margin-bottom: 0.35rem;
}

.setlist-readonly-lyrics {
  font-size: 0.88rem;
  color: var(--text);
  white-space: pre-wrap;
  margin: 0.35rem 0;
  line-height: 1.45;
}

.setlist-readonly-video {
  margin-top: 0.35rem;
}

.setlist-video-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.setlist-video-link:hover {
  color: #1d4ed8;
}

.setlist-muted {
  font-size: 0.85rem;
  color: var(--muted);
}

.setlist-venue-review-card {
  background: var(--surface-soft);
  border: 2px solid #d8e2ee;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.setlist-venue-review-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.setlist-review-status {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.setlist-reviews-history h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.setlist-reviews-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.setlist-review-item {
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 2px solid #dbe3ee;
  border-radius: 12px;
  font-size: 0.88rem;
}

.setlist-review-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.setlist-review-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.setlist-review-item p {
  margin: 0;
  line-height: 1.45;
  color: var(--text);
}

/* ========================================================================
   Marketplace v2 (mp-*) — clean, compact directory shell.
   Used by every directory page; replaces the old .directory-* layout.
   ======================================================================== */
.mp-shell {
  --mp-radius: 14px;
  --mp-radius-sm: 10px;
  --mp-card-radius: 16px;
  --mp-border: 1px solid rgba(15, 23, 42, 0.08);
  --mp-border-strong: 1px solid rgba(15, 23, 42, 0.12);
  --mp-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
  --mp-shadow-hover: 0 18px 40px rgba(15, 23, 42, 0.12);
  --mp-bg: #ffffff;
  --mp-bg-soft: #f8fafc;
  --mp-text: #0f172a;
  --mp-muted: #475569;
  --mp-accent: #f59e0b;
  --mp-accent-strong: #d97706;
  --mp-pink: #ef4444;
  background: transparent;
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}

.mp-shell .mp-section-inner {
  width: min(1200px, 100% - 2.4rem);
  margin: 0 auto;
}

.mp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.1rem;
}

.mp-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mp-accent-strong);
  margin-bottom: 0.4rem;
}

.mp-header h1 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--mp-text);
}

.mp-header h1 [data-mp-city] {
  color: var(--mp-accent-strong);
}

.mp-header p {
  margin: 0.45rem 0 0;
  color: var(--mp-muted);
  max-width: 64ch;
  line-height: 1.5;
}

/* Search bar */
.mp-search {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(220px, 1.6fr) auto;
  gap: 0;
  align-items: stretch;
  background: var(--mp-bg);
  border: var(--mp-border-strong);
  border-radius: 999px;
  padding: 0.45rem 0.5rem;
  box-shadow: var(--mp-shadow);
  margin-bottom: 1rem;
}

.mp-search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-right: 1px solid rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: background 0.15s ease;
  border-radius: 999px;
  min-width: 0;
}

.mp-search-field:hover {
  background: var(--mp-bg-soft);
}

.mp-search-field span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mp-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.mp-search-field input,
.mp-search-field select {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 0.92rem;
  color: var(--mp-text);
  font-family: inherit;
  padding: 0;
  outline: none;
  appearance: none;
  cursor: pointer;
  text-overflow: ellipsis;
}

.mp-search-field input::placeholder {
  color: rgba(71, 85, 105, 0.7);
}

.mp-search-field--keyword {
  border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.mp-filter-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.15rem;
  margin: 0.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--mp-text);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.mp-filter-button:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.mp-filter-icon {
  font-size: 0.95rem;
}

.mp-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.3rem;
  height: 1.3rem;
  padding: 0 0.4rem;
  background: var(--mp-accent);
  color: var(--mp-text);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Chips row */
.mp-chips {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.25rem 0 0.85rem;
  margin-bottom: 0.5rem;
  scrollbar-width: none;
}

.mp-chips::-webkit-scrollbar {
  display: none;
}

.mp-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border: var(--mp-border-strong);
  background: var(--mp-bg);
  color: var(--mp-text);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.mp-chip small {
  color: var(--mp-muted);
  font-weight: 500;
  font-size: 0.78rem;
}

.mp-chip:hover {
  border-color: var(--mp-text);
  background: var(--mp-bg-soft);
}

.mp-chip.is-active {
  background: var(--mp-text);
  color: #fff;
  border-color: var(--mp-text);
}

.mp-chip.is-active small {
  color: rgba(255, 255, 255, 0.75);
}

/* Results header */
.mp-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.25rem 0 1rem;
}

.mp-results-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  color: var(--mp-muted);
  font-size: 0.95rem;
}

.mp-results-summary strong {
  color: var(--mp-text);
  font-size: 1.1rem;
}

.mp-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--mp-muted);
}

.mp-sort select {
  border: var(--mp-border-strong);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  background: var(--mp-bg);
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--mp-text);
  cursor: pointer;
}

/* Grid + cards */
.mp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.35rem 1.1rem;
}

.mp-card {
  display: flex;
  flex-direction: column;
  background: var(--mp-bg);
  border: var(--mp-border);
  border-radius: var(--mp-card-radius);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.mp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mp-shadow-hover);
  border-color: rgba(15, 23, 42, 0.18);
}

.mp-card.is-featured {
  border-color: rgba(245, 158, 11, 0.45);
}

.mp-card-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #fef3c7, #fcd34d);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mp-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mp-cover--live-music { background: linear-gradient(135deg, #fde68a, #f59e0b); }
.mp-cover--open-mics { background: linear-gradient(135deg, #c7d2fe, #6366f1); }
.mp-cover--karaoke-nights { background: linear-gradient(135deg, #fbcfe8, #ec4899); }
.mp-cover--comedy { background: linear-gradient(135deg, #fed7aa, #f97316); }
.mp-cover--festivals { background: linear-gradient(135deg, #bbf7d0, #22c55e); }
.mp-cover--nightlife { background: linear-gradient(135deg, #c4b5fd, #7c3aed); }
.mp-cover--workshops { background: linear-gradient(135deg, #bae6fd, #0284c7); }
.mp-cover--community { background: linear-gradient(135deg, #fde68a, #84cc16); }
.mp-cover--talent { background: linear-gradient(135deg, #fbcfe8, #db2777); }
.mp-cover--equipment { background: linear-gradient(135deg, #cbd5e1, #475569); }
.mp-cover--learn { background: linear-gradient(135deg, #a7f3d0, #14b8a6); }
.mp-cover--events { background: linear-gradient(135deg, #fde68a, #f97316); }
.mp-cover--crew { background: linear-gradient(135deg, #bae6fd, #0284c7); }
.mp-cover--promoters { background: linear-gradient(135deg, #fecaca, #dc2626); }

.mp-card-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: rgba(15, 23, 42, 0.86);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mp-save {
  position: absolute;
  top: 0.55rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--mp-text);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.mp-save:hover {
  background: #fff;
  transform: scale(1.05);
}

.mp-save.is-saved {
  background: var(--mp-pink);
  color: #fff;
}

.mp-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.95rem 1rem 1.05rem;
}

.mp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.05rem;
}

.mp-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mp-muted);
}

.mp-card-rating {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mp-text);
  white-space: nowrap;
}

.mp-card-rating small {
  color: var(--mp-muted);
  font-weight: 500;
}

.mp-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--mp-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mp-card-venue {
  margin: 0;
  font-size: 0.85rem;
  color: var(--mp-muted);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mp-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.5rem;
  font-size: 0.8rem;
  color: var(--mp-muted);
  margin-top: 0.15rem;
}

.mp-card-meta span {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.mp-card-meta strong {
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--mp-text);
}

.mp-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.15rem;
}

.mp-card-tags span {
  font-size: 0.72rem;
  background: var(--mp-bg-soft);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--mp-muted);
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
}

.mp-card-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.mp-button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.mp-button--primary {
  background: var(--mp-text);
  color: #fff;
}

.mp-button--primary:hover {
  background: #1e293b;
}

.mp-button--ghost {
  background: var(--mp-bg);
  border: var(--mp-border-strong);
  color: var(--mp-text);
}

.mp-button--ghost:hover {
  background: var(--mp-bg-soft);
}

/* Empty state */
.mp-empty {
  background: var(--mp-bg);
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: var(--mp-card-radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--mp-muted);
}

.mp-empty h3 {
  margin: 0 0 0.5rem;
  color: var(--mp-text);
  font-size: 1.15rem;
}

.mp-empty p {
  max-width: 42ch;
  margin: 0 auto 1.1rem;
  line-height: 1.5;
}

.mp-empty .mp-button {
  flex: 0 0 auto;
  display: inline-flex;
}

/* Drawer */
.mp-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  visibility: hidden;
}

.mp-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mp-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mp-drawer.is-open .mp-drawer-backdrop {
  opacity: 1;
}

.mp-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: var(--mp-bg);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(15, 23, 42, 0.18);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.mp-drawer.is-open .mp-drawer-panel {
  transform: translateX(0);
}

.mp-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: var(--mp-border);
}

.mp-drawer-head h2 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--mp-text);
}

.mp-drawer-close {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: var(--mp-border-strong);
  background: var(--mp-bg);
  color: var(--mp-text);
  font-size: 0.85rem;
  cursor: pointer;
}

.mp-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.mp-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mp-field label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mp-text);
}

.mp-field select,
.mp-field input {
  border: var(--mp-border-strong);
  border-radius: var(--mp-radius-sm);
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--mp-text);
  background: var(--mp-bg);
}

.mp-drawer-foot {
  display: flex;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-top: var(--mp-border);
}

.mp-drawer-foot .mp-button {
  flex: 1;
}

body.mp-no-scroll {
  overflow: hidden;
}

/* Responsive tweaks */
@media (max-width: 860px) {
  .mp-shell .mp-section-inner {
    width: min(1200px, 100% - 1.5rem);
  }
  .mp-search {
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
    padding: 0.4rem;
    gap: 0.35rem;
  }
  .mp-search-field {
    border-right: 0;
    border-radius: 14px;
    padding: 0.55rem 0.85rem;
    background: var(--mp-bg-soft);
  }
  .mp-search-field--keyword {
    grid-column: span 2;
    background: var(--mp-bg-soft);
  }
  .mp-filter-button {
    grid-column: span 2;
    justify-content: center;
    padding: 0.7rem 1rem;
    margin: 0.1rem 0 0.05rem;
  }
  .mp-results-head {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .mp-grid {
    grid-template-columns: 1fr;
  }
}

/* Hide legacy directory layout on the new pages.
   Pages that previously rendered the sidebar layout now use .mp-shell, so any
   old .directory-* nodes we might have left in the DOM should not show. */
.mp-shell .directory-layout,
.mp-shell .directory-filter-card,
.mp-shell .directory-results-head,
.mp-shell .directory-grid,
.mp-shell .directory-empty,
.mp-shell .directory-command-bar {
  display: none !important;
}

.page-get-started {
  background: #050810;
}

.page-get-started .page-main {
  background: #050810;
}

.get-started-section {
  padding: 2.5rem 1.5rem 5rem;
  background: #050810;
  color: #fff;
}

.get-started-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.get-started-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.4rem 1.25rem 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  isolation: isolate;
  min-height: 210px;
}

.get-started-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: -1;
}

.get-started-card:hover,
.get-started-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.get-started-card:hover::after,
.get-started-card:focus-visible::after {
  opacity: 1;
}

.get-started-card:focus-visible {
  outline: 3px solid rgba(251, 191, 36, 0.7);
  outline-offset: 3px;
}

.get-started-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.95), rgba(245, 158, 11, 0.85));
  color: #1f1300;
  margin-bottom: 0.3rem;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.25);
}

.get-started-card-icon svg {
  width: 22px;
  height: 22px;
}

.get-started-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.005em;
}

.get-started-card > p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.get-started-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.85rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent-strong);
}

.get-started-card-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.get-started-card:hover .get-started-card-cta svg,
.get-started-card:focus-visible .get-started-card-cta svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .get-started-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .get-started-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .get-started-section {
    padding: 1.75rem 1.25rem 3.5rem;
  }

  .get-started-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .get-started-card {
    min-height: 0;
  }
}

.ecosystem-diagram-wrap {
  margin: 2.75rem auto 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.35);
}

.ecosystem-diagram {
  width: 100%;
  height: auto;
  display: block;
  font-family: inherit;
}

.ecosystem-diagram-line line {
  stroke-linecap: round;
  fill: none;
}

.ecosystem-diagram-line--spoke line {
  stroke: rgba(245, 158, 11, 0.55);
  stroke-width: 2.25;
}

.ecosystem-diagram-line--ring line {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1.5;
  stroke-dasharray: 5 6;
}

.ecosystem-diagram-node rect {
  fill: rgba(15, 23, 42, 0.92);
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1;
  filter: url(#ecosystem-node-shadow);
}

.ecosystem-diagram-node-label {
  fill: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.ecosystem-diagram-node-meta {
  fill: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
}

.ecosystem-diagram-hub-label {
  fill: #1f1300;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.ecosystem-diagram-hub-meta {
  fill: rgba(31, 19, 0, 0.78);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ecosystem-diagram-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.ecosystem-diagram-legend {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ecosystem-diagram-swatch {
  display: inline-block;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  flex-shrink: 0;
}

.ecosystem-diagram-swatch--spoke {
  background: rgba(245, 158, 11, 0.7);
}

.ecosystem-diagram-swatch--ring {
  height: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.45);
  background: transparent;
  border-radius: 0;
}

@media (max-width: 640px) {
  .ecosystem-diagram-wrap {
    padding: 1rem;
    border-radius: 20px;
  }

  .ecosystem-diagram-node-label {
    font-size: 20px;
  }

  .ecosystem-diagram-node-meta {
    font-size: 13px;
  }

  .ecosystem-diagram-hub-label {
    font-size: 24px;
  }

  .ecosystem-diagram-hub-meta {
    font-size: 14px;
  }
}
