/* =========================================================
   myartist.in — Launching Soon
   Design system tokens + Navbar + Hero
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; }

/* ---------- Design tokens ---------- */
:root {
  /* Colors — base */
  --color-bg: #08080f;
  --color-bg-alt: #0d0e1a;
  --color-surface: #13141f;
  --color-surface-2: #1a1b2a;
  --color-border: rgba(255, 255, 255, 0.09);
  --color-border-strong: rgba(255, 255, 255, 0.16);

  /* Colors — text */
  --color-text: #f5f5f7;
  --color-text-muted: #a0a3b1;
  --color-text-faint: #6b6e7e;

  /* Colors — accents */
  --accent-orange: #f5811f;
  --accent-orange-2: #ff9d4d;
  --accent-purple: #8b5cf6;
  --accent-blue: #4a9fff;
  --accent-teal: #2ecc9a;
  --accent-green: #22c55e;
  --accent-pink: #ec4899;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-badge: 0.75rem;
  --fs-nav: 0.9375rem;
  --fs-body: 1.0625rem;
  --fs-h1: clamp(2.5rem, 4.5vw, 3.75rem);

  /* Spacing scale */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-12: 96px;
  --sp-16: 128px;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-glow-orange: 0 0 60px rgba(245, 129, 31, 0.18);
  --shadow-glow-purple: 0 0 60px rgba(139, 92, 246, 0.18);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --container-w: 1240px;
  --navbar-h: 84px;
}

/* ---------- Base ---------- */
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--sp-3);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--sp-6); }
}

/* ---------- Background decoration ---------- */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-decor .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: drift 22s ease-in-out infinite alternate;
}

.glow-orange {
  width: 560px;
  height: 560px;
  top: -180px;
  left: -140px;
  background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
}

.glow-purple {
  width: 620px;
  height: 620px;
  top: 8%;
  right: -220px;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
  animation-delay: 4s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-30px, 40px) scale(1.06); }
}

.wave-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  background: rgba(8, 8, 15, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium);
}

.navbar.is-scrolled {
  background: rgba(8, 8, 15, 0.82);
  border-bottom-color: var(--color-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--color-text);
  flex-shrink: 0;
}

.logo-dot { color: var(--accent-orange); }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-6);
}

.nav-links a {
  font-size: var(--fs-nav);
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover { color: var(--color-text); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-premium), opacity 0.25s ease;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
@media (max-width: 899px) {
  .nav-links {
    position: absolute;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
    background: rgba(10, 10, 18, 0.98);
    border-bottom: 1px solid var(--color-border);
    padding: var(--sp-3) var(--sp-3) var(--sp-4);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s var(--ease-premium), opacity 0.25s ease;
  }
  .nav-links.is-open {
    display: flex;
    max-height: 320px;
    opacity: 1;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium), background 0.25s ease, border-color 0.25s ease;
  border: 1.5px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-2) 100%);
  color: #17100a;
  box-shadow: 0 8px 30px rgba(245, 129, 31, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 12px 38px rgba(245, 129, 31, 0.4);
}

.btn--outline {
  background: transparent;
  border-color: var(--color-border-strong);
  color: var(--color-text);
}

.btn--outline:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange-2);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* ---------- Badge / pill label ---------- */
.badge--pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 129, 31, 0.35);
  background: rgba(245, 129, 31, 0.08);
  color: var(--accent-orange-2);
  font-size: var(--fs-badge);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 8px var(--accent-orange);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  padding-top: clamp(20px, 4vw, var(--sp-6));
  padding-bottom: clamp(64px, 10vw, var(--sp-16));
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--sp-6);
    align-items: center;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
  gap: var(--sp-3);
  margin: 0;
}

.hero__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h1);
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--color-text);
  margin-top: var(--sp-2);
}

.text-accent-orange { color: var(--accent-orange-2); }

.hero__paragraph {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  max-width: 460px;
  margin-top: var(--sp-1);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}

/* ---------- Hero visual / photo collage — unified tilted grid ---------- */
.hero__visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Master tilted wrapper: the whole 5-card gallery rotates together as one
   synchronized cluster, matching a hand-arranged photo-wall composition. */
.photo-collage {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: clamp(320px, 66vw, 500px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(6deg);
  transition: transform 0.5s var(--ease-premium);
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s var(--ease-premium);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  filter: brightness(.86) saturate(.94) contrast(1.05);
}

/* Dark gradient so every photo melts into the UI at its base */
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent 60%);
  pointer-events: none;
}

.photo-card:hover { transform: translateY(-6px); }

/* Center card — main singer, largest and frontmost */
.photo-card--singer {
  flex-shrink: 0;
  width: clamp(158px, 34vw, 210px);
  height: clamp(248px, 56vw, 330px);
  z-index: 20;
  border-radius: 28px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.1), 0 20px 50px rgba(0,0,0,0.5);
}

.photo-card--singer:hover { transform: translateY(-6px); }

/* Top-left — guitarist/musician */
.photo-card--guitarist {
  position: absolute;
  width: clamp(114px, 25vw, 150px);
  height: clamp(148px, 33vw, 195px);
  z-index: 10;
  top: 90px;
  left: -6px;
}

/* Top-right — host / DJ */
.photo-card--dj {
  position: absolute;
  width: clamp(114px, 25vw, 150px);
  height: clamp(148px, 33vw, 195px);
  z-index: 10;
  top: 20px;
  right: -6px;
}

/* Bottom-left — comedian */
.photo-card--comedian {
  position: absolute;
  width: clamp(114px, 25vw, 150px);
  height: clamp(133px, 30vw, 175px);
  z-index: 10;
  bottom: 20px;
  left: -6px;
}

/* Bottom-right — makeup artist */
.photo-card--makeup {
  position: absolute;
  width: clamp(114px, 25vw, 150px);
  height: clamp(133px, 30vw, 175px);
  z-index: 10;
  bottom: 90px;
  right: -6px;
}

/* Category badges anchored directly on the cards — dark glassmorphic pills.
   They live inside the same tilted wrapper as the cards, so they move and
   tilt together as one cohesive cluster instead of staying level. */
.cat-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(18, 17, 26, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
  z-index: 30;
  white-space: nowrap;
  animation: floaty 6s ease-in-out infinite;
}

.cat-badge__icon {
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1;
}

/* Musicians — top-left, above the musician card */
.cat-badge--musicians { top: 40px; left: 0; animation-delay: 0s; }
/* Hosts — top-right, above the DJ/host card */
.cat-badge--hosts { top: 8px; right: 16px; animation-delay: 1.2s; }
/* Comedians — middle-right, next to the center card */
.cat-badge--comedians {
  bottom: calc(20px + clamp(133px, 30vw, 175px)); /* Thoda niche karne ke liye */
  left: 15px;
  animation-delay: 2.4s;
}
/* Makeup Artists — bottom-right, below the makeup card */
.cat-badge--makeup { bottom: calc(35px + clamp(133px, 30vw, 175px) + 8px); right: 10px; animation-delay: 3.2s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (min-width: 1024px) {
  .photo-collage { height: 500px; }
}

/* Mobile / tablet: keep the same tilt direction and magnitude, but scale
   the whole cluster down so its rotated (wider) bounding box never
   exceeds the viewport width. */
@media (max-width: 900px) {
  .photo-collage { transform: rotate(6deg) scale(0.9); }
}

@media (max-width: 640px) {
  .photo-collage { transform: rotate(6deg) scale(0.9); }
  .cat-badge { font-size: 0.66rem; padding: 5px 11px; gap: 6px; }
  .cat-badge--comedians { right: auto; left: 15px; }
  .cat-badge--makeup { bottom: calc(35px + clamp(133px, 30vw, 175px) + 8px); right: 10px; }
  .hero__visual { min-height: 360px; }
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .bg-decor .glow, .cat-badge { animation: none; }
}

/* ---------- Placeholder sections (not yet implemented) ---------- */
.section-placeholder {
  min-height: 1px;
}

/* ---------- Site footer ---------- */
.site-footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0914;
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.75rem;
  color: #9ca3af;
}

.site-footer__brand {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
}

.site-footer__links a {
  color: #9ca3af;
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: #fff;
}

.site-footer__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #9ca3af;
  text-align: center;
}

.site-footer__copy-main {
  color: #9ca3af;
}

.site-footer__copy-sub {
  color: #6b7280;
  font-size: 0.68rem;
}

/* ---------- Static policy pages ---------- */
.policy-page {
  padding: calc(var(--navbar-h) + 12px) 0 80px;
  max-width: 760px;
}

@media (min-width: 1024px) {
  .policy-page { padding-top: calc(var(--navbar-h) + 15px); }
}

.policy-page__eyebrow {
  color: var(--accent-orange-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.policy-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.5px;
  margin: 14px 0 8px;
}

.policy-page__updated {
  color: var(--color-text-faint);
  font-size: 0.85rem;
  margin-bottom: 36px;
}

.policy-page h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 34px 0 12px;
}

.policy-page p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.policy-page ul {
  margin: 0 0 14px;
  padding-left: 20px;
  list-style: disc;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.policy-page li { margin-bottom: 6px; }

.policy-page a { color: var(--accent-orange-2); }
.policy-page a:hover { text-decoration: underline; }

@media (min-width: 640px) {
  .site-footer {
    flex-direction: row;
    padding-inline: 40px;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding-inline: 64px;
  }
}

/* Tablet/iPad only: the 3-way row (brand / links / copy) gets too tight to wrap
   cleanly between 768-1024px, so stack it in balanced, generously-spaced areas. */
@media (min-width: 768px) and (max-width: 1024px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 32px 48px;
  }

  .site-footer__links {
    justify-content: center;
    gap: 14px 32px;
  }
}

/* ---------- Refined approved composition: Hero + About ---------- */
.eyebrow { color: var(--accent-orange-2); font-size: .68rem; font-weight: 700; letter-spacing: 1.7px; text-transform: uppercase; }
.btn--sm { padding: 8px 17px; font-size: .73rem; }


/* ---------- About (consolidated, single source of truth) ---------- */
.about { position: relative; z-index: 1; padding: 56px 0 60px; overflow: hidden; }
.about::before { content: ''; position: absolute; width: 520px; height: 440px; right: -180px; top: 5%; background: radial-gradient(ellipse, rgba(139,92,246,.12), transparent 67%); filter: blur(35px); pointer-events: none; }
.about__inner { display: grid; grid-template-columns: 1fr; align-items: center; gap: 36px; max-width: 1300px; }
.about__content { position: relative; z-index: 2; }
.about__heading { font-family: var(--font-display); font-size: clamp(1.9rem, 5.5vw, 2.35rem); line-height: 1.08; font-weight: 500; letter-spacing: -.5px; margin: 14px 0 16px; }
.text-accent-gradient { background: linear-gradient(95deg, var(--accent-orange-2), var(--accent-pink) 75%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about__paragraph { font-size: .92rem; line-height: 1.6; color: var(--color-text-muted); max-width: 430px; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(60px,1fr)); max-width: 440px; gap: 16px; margin-top: 32px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; line-height: 1; }
.stat:nth-child(1) strong { color: var(--accent-orange-2); }
.stat:nth-child(2) strong { color: var(--accent-purple); }
.stat:nth-child(3) strong { color: var(--accent-pink); }
.stat:nth-child(4) strong { color: #c9a8ff; }
.stat span { color: var(--color-text-faint); font-size: .68rem; line-height: 1.25; white-space: nowrap; }

.wheel-wrap { position: relative; width: 100%; display: flex; align-items: center; justify-content: center; overflow: visible; min-height: 260px; }
.about-wheel { display: block; width: min(100%, 460px); height: auto; overflow: visible; }
.wheel-panel path { stroke-width: 1.15; transition: filter .25s ease; }
.wheel-panel text { fill: rgba(247, 244, 239, .92); font-family: var(--font-body); font-size: 12.5px; font-weight: 600; text-anchor: middle; dominant-baseline: middle; pointer-events: none; }
.wheel-ic { fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.wheel-panel:hover path { filter: brightness(1.4); }

.wheel-panel.magicians path { fill: rgba(139, 92, 246, .16); stroke: rgba(139, 92, 246, .5); } .wheel-panel.magicians .wheel-ic { stroke: #b3a5ff; }
.wheel-panel.musicians path { fill: rgba(74, 159, 255, .16); stroke: rgba(74, 159, 255, .5); } .wheel-panel.musicians .wheel-ic { stroke: #8fc3ff; }
.wheel-panel.singers path { fill: rgba(46, 204, 154, .16); stroke: rgba(46, 204, 154, .5); } .wheel-panel.singers .wheel-ic { stroke: #7fe6c8; }
.wheel-panel.comedians path { fill: rgba(212, 178, 51, .16); stroke: rgba(212, 178, 51, .5); } .wheel-panel.comedians .wheel-ic { stroke: #f0d878; }
.wheel-panel.hosts path { fill: rgba(245, 129, 31, .16); stroke: rgba(245, 129, 31, .5); } .wheel-panel.hosts .wheel-ic { stroke: #ffb066; }
.wheel-panel.djs path { fill: rgba(196, 102, 230, .17); stroke: rgba(196, 102, 230, .55); } .wheel-panel.djs .wheel-ic { stroke: #e29bee; }
.wheel-panel.makeup path { fill: rgba(236, 72, 153, .16); stroke: rgba(236, 72, 153, .5); } .wheel-panel.makeup .wheel-ic { stroke: #f592c0; }
.wheel-panel.dancers path { fill: rgba(217, 119, 6, .18); stroke: rgba(217, 119, 6, .5); } .wheel-panel.dancers .wheel-ic { stroke: #ffab5e; }

.wheel-hub-shape { fill: #2c1019; stroke: rgba(255, 138, 155, .6); stroke-width: 1; filter: drop-shadow(0 0 20px rgba(225, 65, 105, .38)); }
.wheel-hub-icon { fill: none; stroke: #ffbeaa; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.wheel-hub-title { fill: #f8eded; font-family: var(--font-body); font-size: 14.5px; font-weight: 700; text-anchor: middle; }
.wheel-hub-copy { fill: #e8c3ce; font-family: var(--font-body); font-size: 10.5px; font-weight: 400; text-anchor: middle; }

@media (min-width: 860px) {
  .about { padding: 76px 0 84px; }
  .about__inner { grid-template-columns: minmax(340px, .74fr) minmax(420px, 1.26fr); gap: 24px; }
  .about__heading { font-size: clamp(2.35rem, 3.05vw, 2.9rem); }
  .about__paragraph { font-size: .95rem; }
  .stats { margin-top: 38px; }
  .wheel-wrap { min-height: 400px; }
  .about-wheel { width: min(100%, 560px); }
}
@media (max-width: 640px) {
  .about { padding: 44px 0 48px; }
  .stats { gap: 10px; margin-top: 26px; }
  .stat strong { font-size: 1.15rem; }
  .stat span { font-size: .6rem; white-space: normal; }
  .wheel-wrap { min-height: 220px; }
  .about-wheel { width: min(112%, 400px); }
}

/* Approved reference proportions: compact page rhythm and a clustered five-card collage. */
@media (min-width: 980px) {
  .hero { padding: 76px 0 62px; }
  .hero__visual { min-height: 480px; }
}
.navbar { background: rgba(8, 8, 15, .88); }
.navbar__inner { max-width: 1200px; }

@media (max-width: 979px) { .hero { padding-bottom: 36px; } }
@media (max-width: 640px) { .navbar { height: 64px; }.navbar__actions .btn { padding: 7px 10px; font-size: .65rem; }.hero { padding-top: 36px; padding-bottom: 30px; }.hero__content { gap: 14px; }.hero__heading { font-size: clamp(2.05rem, 9.8vw, 2.55rem); } }


/* ---------- For people hiring artists ---------- */
.hiring {
  position: relative;
  z-index: 1;
  padding: 115px 0 75px;
  overflow: hidden;
}

.hiring::before {
  content: '';
  position: absolute;
  width: 430px;
  height: 300px;
  right: 11%;
  top: 4%;
  background: radial-gradient(ellipse, rgba(46, 204, 154, 0.07), transparent 68%);
  pointer-events: none;
}

.hiring__main {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 90px;
  align-items: center;
  max-width: 1200px;
}

.hiring__content {
  position: relative;
  z-index: 1;
}

.hiring__heading {
  font: 500 2.36rem / 1.12 var(--font-display);
  letter-spacing: -0.5px;
  margin: 12px 0 18px;
  max-width: 320px;
}

.hiring__heading span {
  color: var(--accent-teal);
}

.hiring__content > p {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 230px;
}

.btn--teal {
  padding: 11px 22px;
  font-size: 0.72rem;
  background: linear-gradient(135deg, #239e7f, #47c99f);
  color: #071711;
  box-shadow: 0 8px 25px rgba(46, 204, 154, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: transform 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium);
  white-space: nowrap;
}

.btn--teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 30px rgba(46, 204, 154, 0.24);
}

.hiring__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(71, 201, 159, .52);
  border-radius: var(--radius-pill);
  background: rgba(12, 28, 28, .5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 6px 16px rgba(0,0,0,.14);
  color: var(--color-text);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1;
  transition: transform .25s var(--ease-premium), border-color .25s var(--ease-premium), box-shadow .25s var(--ease-premium), background .25s var(--ease-premium);
  white-space: nowrap;
}

.btn--whatsapp svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #f7f5ef;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, .18));
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  border-color: rgba(98, 221, 180, .82);
  background: rgba(19, 54, 48, .48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 21px rgba(46, 204, 154, .14);
}

.event-showcase {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  justify-content: flex-start;
}

.event-card {
  position: relative;
  width: 88px;
  height: 280px;
  flex: 0 0 88px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: #12141c;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition: transform 0.28s var(--ease-premium), border-color 0.28s ease, box-shadow 0.28s ease;
}

.event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 7, 13, 0.04) 19%, rgba(7, 9, 15, 0.28) 44%, rgba(7, 9, 15, 0.97) 82%);
  pointer-events: none;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-premium);
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-accent);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--card-accent) 18%, transparent);
}

.event-card:hover img {
  transform: scale(1.06);
}

.event-card__copy {
  position: absolute;
  z-index: 1;
  left: 8px;
  right: 6px;
  bottom: 10px;
}

.event-card__copy b {
  display: block;
  color: var(--card-accent);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}

.event-card h3 {
  color: var(--color-text);
  font-size: 0.66rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 5px;
}

.event-card p {
  color: #b7b8c1;
  font-size: 0.47rem;
  line-height: 1.35;
}

.event-card--wedding {
  --card-accent: #b9c453;
  --card-border: rgba(185, 196, 83, 0.34);
}

.event-card--corporate {
  --card-accent: #68a9ff;
  --card-border: rgba(104, 169, 255, 0.34);
}

.event-card--birthday {
  --card-accent: #ef8588;
  --card-border: rgba(239, 133, 136, 0.34);
}

.event-card--college {
  --card-accent: #5fcaac;
  --card-border: rgba(95, 202, 172, 0.34);
}

.event-card--party {
  --card-accent: #e47cab;
  --card-border: rgba(228, 124, 171, 0.34);
}

.event-card--bhajan {
  --card-accent: #e8a33d;
  --card-border: rgba(232, 163, 61, 0.34);
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-left: 24px;
  border-left: 1px solid var(--color-border);
}

.trust-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.trust-item b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--trust) 13%, transparent);
  color: var(--trust);
  font-size: 0.85rem;
}

.trust-item span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-item strong {
  font-size: 0.62rem;
  color: var(--color-text);
}

.trust-item small {
  font-size: 0.51rem;
  color: var(--color-text-faint);
}

.trust-item--verified {
  --trust: #df718a;
}

.trust-item--quality {
  --trust: #f08a5a;
}

.trust-item--easy {
  --trust: #53c9a0;
}

.trust-item--all {
  --trust: #d871b6;
}

/* Tablet responsive */
@media (max-width: 979px) {
  .hiring__main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .event-showcase {
    justify-content: flex-start;
  }

  .hiring__content > p br {
    display: none;
  }
}

/* Mobile responsive */
@media (max-width: 640px) {
  .hiring {
    padding: 45px 0 30px;
  }

  .hiring__heading {
    font-size: 2rem;
  }

  .event-showcase {
    overflow-x: auto;
    width: calc(100% + 24px);
    padding: 2px 24px 12px 0;
    scrollbar-width: none;
  }

  .event-showcase::-webkit-scrollbar {
    display: none;
  }

  .event-card {
    width: 116px;
    height: 220px;
    flex-basis: 116px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 17px;
    margin-top: 18px;
  }

  .trust-item {
    padding-left: 11px;
  }

  .trust-item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

/* Desktop sizing for 1440+ viewport */
@media (min-width: 1440px) {
  .hiring {
    padding: 130px 0 85px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hiring__main {
    grid-template-columns: 400px 1fr;
    gap: 100px;
    align-items: center;
  }

  .hiring__heading {
    font-size: 2.5rem;
    line-height: 1.08;
    max-width: 350px;
  }

  .hiring__content > p {
    max-width: 250px;
  }

  .event-card {
    width: 95px;
    height: 290px;
    flex-basis: 95px;
  }
}


/* ---------- FOR ARTISTS SECTION ---------- */
.artists {
  position: relative;
  z-index: 1;
  padding: 100px 0 90px;
  overflow: hidden;
}

.artists::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 350px;
  left: -160px;
  top: 10%;
  background: radial-gradient(ellipse, rgba(74, 159, 255, 0.08), transparent 65%);
  pointer-events: none;
}

.artists::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 380px;
  right: -120px;
  bottom: 0;
  background: radial-gradient(ellipse, rgba(236, 72, 153, 0.07), transparent 68%);
  pointer-events: none;
}

.artists__inner {
  display: grid;
  grid-template-columns: 280px 1fr 400px;
  gap: 28px;
  align-items: center;
  max-width: 1240px;
  position: relative;
  z-index: 2;
}

.artists__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 14px;
}

.artists__heading {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.4px;
  color: var(--color-text);
  margin: 0;
}

.text-accent-teal {
  color: var(--accent-teal);
}

.artists__description {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 210px;
  margin: 0;
}

.artists__cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.btn--artists {
  padding: 10px 24px;
  font-size: 0.7rem;
  background: linear-gradient(135deg, var(--accent-teal) 0%, #3dd9ad 100%);
  color: #061412;
  box-shadow: 0 8px 24px rgba(46, 204, 154, 0.18);
  border-radius: var(--radius-pill);
  font-weight: 600;
  align-self: flex-start;
  transition: transform 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium);
  white-space: nowrap;
}

.btn--artists:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 28px rgba(46, 204, 154, 0.26);
}

.artists__cta-subtext {
  font-size: 0.59rem;
  line-height: 1.55;
  color: var(--color-text-faint);
  margin: 0;
  max-width: 110px;
}

/* Center Features Section */
.artists__features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 12px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 6px;
  background: rgba(20, 22, 35, 0.8);
  border: 1px solid rgba(46, 204, 154, 0.2);
  color: var(--icon-color);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

.feature-icon--green {
  --icon-color: #22c55e;
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.12);
}

.feature-icon--teal {
  --icon-color: var(--accent-teal);
  border-color: rgba(46, 204, 154, 0.35);
  box-shadow: 0 0 16px rgba(46, 204, 154, 0.12);
}

.feature-icon--orange {
  --icon-color: var(--accent-orange);
  border-color: rgba(245, 129, 31, 0.3);
  box-shadow: 0 0 14px rgba(245, 129, 31, 0.08);
}

.feature-icon--pink {
  --icon-color: var(--accent-pink);
  border-color: rgba(236, 72, 153, 0.32);
  box-shadow: 0 0 16px rgba(236, 72, 153, 0.1);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.feature-text h3 {
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}

.feature-text p {
  font-size: 0.62rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

/* Right Visual - World Map */
.artists__visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.world-map {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 380px;
  max-height: 420px;
}

.map-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.artist-circles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.artist-circle {
  position: absolute;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--circle-border);
  background: rgba(10, 12, 20, 0.6);
  box-shadow: 0 0 24px var(--circle-glow);
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s ease;
}

.artist-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 0 32px var(--circle-glow);
}

.artist-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.08);
}

.circle-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.artist-circle--guitarist {
  top: 8%;
  left: 2%;
  --circle-border: rgba(34, 197, 94, 0.5);
  --circle-glow: rgba(34, 197, 94, 0.25);
}

.artist-circle--singer {
  top: 12%;
  right: 8%;
  width: 115px;
  height: 115px;
  --circle-border: rgba(236, 72, 153, 0.5);
  --circle-glow: rgba(236, 72, 153, 0.28);
}

.artist-circle--dj {
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  --circle-border: rgba(139, 92, 246, 0.5);
  --circle-glow: rgba(139, 92, 246, 0.25);
}

.artist-circle--male-performer {
  bottom: 12%;
  left: 12%;
  --circle-border: rgba(74, 159, 255, 0.48);
  --circle-glow: rgba(74, 159, 255, 0.22);
}

.artist-circle--dancer {
  bottom: 8%;
  right: 18%;
  --circle-border: rgba(245, 129, 31, 0.45);
  --circle-glow: rgba(245, 129, 31, 0.2);
}

/* Responsive Design */
@media (max-width: 979px) {
  .artists__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .artists__visual {
    height: 360px;
    order: -1;
  }

  .world-map {
    max-width: 320px;
    max-height: 360px;
  }

  .artist-circle {
    width: 90px;
    height: 90px;
  }

  .artist-circle--singer {
    width: 100px;
    height: 100px;
  }

  .artists__heading {
    font-size: 1.85rem;
  }

  .artists__description {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .artists {
    padding: 60px 0 50px;
  }

  .artists__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .artists__content {
    gap: 13px;
  }

  .artists__heading {
    font-size: 1.6rem;
    line-height: 1.12;
  }

  .artists__description {
    font-size: 0.72rem;
    max-width: none;
  }

  .artists__features {
    gap: 14px;
  }

  .feature-icon {
    width: 26px;
    height: 26px;
  }

  .feature-text h3 {
    font-size: 0.7rem;
  }

  .feature-text p {
    font-size: 0.58rem;
  }

  .artists__visual {
    height: 300px;
    width: 100%;
  }

  .world-map {
    max-width: 100%;
    max-height: 300px;
  }

  .artist-circle {
    width: 80px;
    height: 80px;
  }

  .artist-circle--singer {
    width: 90px;
    height: 90px;
  }
}

/* Desktop Optimization (1440+) */
@media (min-width: 1440px) {
  .artists {
    padding: 110px 0 100px;
  }

  .artists__inner {
    grid-template-columns: 290px 1fr 420px;
    gap: 32px;
  }

  .artists__heading {
    font-size: 2.3rem;
    max-width: 270px;
  }

  .artists__features {
    gap: 20px;
    padding: 0 16px;
  }

  .artists__visual {
    height: 450px;
  }

  .world-map {
    max-width: 400px;
    max-height: 450px;
  }

  .artist-circle {
    width: 115px;
    height: 115px;
  }

  .artist-circle--singer {
    width: 125px;
    height: 125px;
  }
}

/* Final Hero reference proportions (typography/navbar only —
   collage geometry now lives in the single consolidated block above). */
@media (min-width:980px) {
  :root { --navbar-h:76px; --container-w:1320px; }
  .navbar { background:rgba(8,8,15,.84); border-bottom-color:var(--color-border); }
  .navbar__inner { max-width:1320px; }.logo { font-size:1.3rem; }.nav-links { gap:32px; }.nav-links a { font-size:.76rem; }.btn--sm { height:32px; padding:0 15px; font-size:.68rem; }
  .hero { padding: 15px 0 86px; }
  .hero__inner { grid-template-columns: 1.08fr .92fr; gap:30px; align-items:center; }
  .hero__content { max-width:540px; gap:0; align-self: center; }
  .eyebrow { font-size:.66rem; letter-spacing:1.65px; }
  .hero__heading { max-width:520px; margin-top:19px; font-size:clamp(3.1rem,3.8vw,3.65rem); line-height:1.1; }
  .hero__paragraph { max-width:420px; margin-top:24px; font-size:1rem; line-height:1.65; }
  .hero__ctas { margin-top:26px; gap:11px; }
  .hero__ctas .btn { height:44px; padding:0 20px; font-size:.76rem; }
}

@media (max-width:640px) {
  .hero { padding-top:24px; padding-bottom:42px; }
}

/* Refined event-card showcase: wider editorial cards with image-to-surface fades. */
.event-showcase {
  align-items: stretch;
  gap: 14px;
}

.event-card {
  width: 120px;
  height: 252px;
  flex: 0 0 120px;
  border-radius: 12px;
  background: #0d0d12;
  text-align: center;
}

.event-card::after {
  z-index: 0;
  background: linear-gradient(to bottom, transparent 30%, #0d0d12 90%);
}

.event-card img {
  position: absolute;
  inset: 0 0 auto;
  height: 58%;
  object-position: center top;
}

.event-card__copy {
  top: 58%;
  left: 10px;
  right: 10px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.event-card__copy b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  margin: 0 0 6px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--card-accent) 16%, transparent);
  font-size: 0.78rem;
}

.event-card h3 {
  min-height: 2.3em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 0.72rem;
  line-height: 1.15;
  margin-bottom: 4px;
}

.event-card p {
  max-width: 102px;
  color: #b7b8c1;
  font-size: 0.56rem;
  line-height: 1.34;
}

.event-card--wedding {
  --card-accent: #50c995;
  --card-border: rgba(80, 201, 149, 0.48);
}

.event-card--corporate {
  --card-accent: #66a7ff;
  --card-border: rgba(102, 167, 255, 0.48);
}

.event-card--birthday {
  --card-accent: #ef748d;
  --card-border: rgba(239, 116, 141, 0.48);
}

.event-card--college {
  --card-accent: #43cbbd;
  --card-border: rgba(67, 203, 189, 0.48);
}

.event-card--party {
  --card-accent: #c776e5;
  --card-border: rgba(199, 118, 229, 0.48);
}

.event-card--bhajan {
  --card-accent: #e8a33d;
  --card-border: rgba(232, 163, 61, 0.48);
}

@media (min-width: 980px) {
  .event-showcase {
    gap: 14px;
    flex-wrap: nowrap;
  }
}

/* A sixth card (Bhajans & Religious Events) is too wide for the fixed 380px/1fr
   composition used in this range — let the row scroll horizontally instead of
   letting `.hiring`'s overflow:hidden silently clip the last cards. */
@media (min-width: 980px) and (max-width: 1439px) {
  .event-showcase:has(.event-card--bhajan) {
    gap: 10px;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .event-showcase:has(.event-card--bhajan) .event-card {
    width: 100px;
    flex-basis: 100px;
  }
}

/* Slightly wider hiring event cards on desktop only, keeping the row single-line and gaps consistent. */
@media (min-width: 1200px) {
  .event-showcase:has(.event-card--bhajan) .event-card,
  .event-card {
    width: 108px;
    flex-basis: 108px;
  }
}

/* Desktop (1200-1439px): the fixed-width row above no longer fits in the 380px/1fr
   composition, so replace the horizontally-scrolling flex row with 6 equal, flexible
   grid columns that fit the available space with no scrollbar. */
@media (min-width: 1200px) and (max-width: 1439px) {
  .event-showcase:has(.event-card--bhajan) {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: visible;
    min-width: 0;
    padding-bottom: 0;
  }

  .event-showcase:has(.event-card--bhajan) .event-card {
    width: auto;
    flex: none;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .event-showcase {
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .event-showcase::-webkit-scrollbar {
    display: none;
  }

  .event-card {
    width: 112px;
    height: 244px;
    flex-basis: 112px;
  }
}

@media (max-width: 767px) {
  .event-showcase {
    width: calc(100% + 24px);
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2px 24px 12px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .event-showcase::-webkit-scrollbar {
    display: none;
  }

  .event-card {
    width: 144px;
    height: 264px;
    flex: 0 0 144px;
    scroll-snap-align: start;
  }
}

/* About — visual stats and curved category wheel. */
.about {
  padding: 80px 0;
}

.about .eyebrow {
  color: var(--accent-orange-2);
  font-size: .7rem;
  letter-spacing: 2px;
}

.about__heading {
  font-size: clamp(2.3rem, 5vw, 3rem);
  margin: 17px 0 19px;
}

.about .text-accent-gradient {
  background-image: linear-gradient(96deg, #b780ff 4%, #f04eb0 88%);
}

.about__paragraph {
  max-width: 460px;
  font-size: 1rem;
  line-height: 1.68;
}

.about .stats {
  max-width: 510px;
  gap: 24px;
  margin-top: 42px;
}

.about .stat {
  gap: 7px;
}

.about .stat strong {
  font-size: clamp(1.75rem, 2.35vw, 2.2rem);
  font-weight: 600;
}

.about .stat:nth-child(1) strong { color: #ff8072; }
.about .stat:nth-child(2) strong { color: #bd8cff; }
.about .stat:nth-child(3) strong { color: #ed7fd0; }
.about .stat:nth-child(4) strong { color: #d5fff4; }

.about .stat span {
  color: #a7a8b4;
  font-size: .72rem;
}

.wheel-wrap {
  min-height: 340px;
}

.about-wheel {
  width: min(100%, 530px);
}

.wheel-panel path {
  stroke: rgba(255, 255, 255, .14);
  stroke-width: 1px;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: none;
}

.about-wheel .wheel-panel:hover path { filter: none; }

.wheel-panel text {
  fill: #fcf9fb;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.about-wheel .wheel-panel .wheel-ic {
  color: #fff;
  stroke: #fff;
  stroke-width: 1.25;
  opacity: 1;
  filter: none;
}

.wheel-panel.magicians { --wheel-glow: #8b5cf6; }
.wheel-panel.magicians path { fill: url(#magicianFill); }
.wheel-panel.musicians { --wheel-glow: #4a9fff; }
.wheel-panel.musicians path { fill: url(#musicianFill); }
.wheel-panel.singers { --wheel-glow: #42d8bd; }
.wheel-panel.singers path { fill: url(#singerFill); }
.wheel-panel.comedians { --wheel-glow: #f6d44c; }
.wheel-panel.comedians path { fill: url(#comedianFill); }
.wheel-panel.hosts { --wheel-glow: #ff983b; }
.wheel-panel.hosts path { fill: url(#hostFill); }
.wheel-panel.djs { --wheel-glow: #bd72ff; }
.wheel-panel.djs path { fill: url(#djFill); }
.wheel-panel.makeup { --wheel-glow: #f153b8; }
.wheel-panel.makeup path { fill: url(#makeupFill); }
.wheel-panel.dancers { --wheel-glow: #ff7e68; }
.wheel-panel.dancers path { fill: url(#dancerFill); }

.wheel-hub-bloom {
  fill: #ff4776;
  opacity: .52;
  filter: url(#hubBloom);
}

.wheel-hub-shape {
  fill: url(#hubFill);
  stroke: rgba(255, 130, 164, .75);
  stroke-width: 1.4;
  filter: drop-shadow(0 0 22px rgba(248, 63, 111, .5));
}

.wheel-hub-badge {
  fill: url(#hubBadgeFill);
  stroke: #ff9bbb;
  stroke-width: 1.4;
  filter: drop-shadow(0 0 10px rgba(255, 105, 148, .7));
}

.wheel-hub-icon {
  stroke: #fff7fa;
  stroke-width: 1.55;
  filter: drop-shadow(0 0 5px #ffb0c5);
}

.wheel-hub-title {
  fill: #fff9fb;
  font-size: 15px;
}

.wheel-hub-copy {
  fill: #c8bdc5;
  font-size: 10.5px;
}

.wheel-hub-content {
  position: absolute;
  bottom: 12%;
  left: 50%;
  z-index: 3;
  width: 176px;
  height: 136px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  pointer-events: none;
  text-align: center;
}

.wheel-hub-content__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 5px;
  border: 1px solid rgba(255, 156, 190, .82);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, rgba(255,255,255,.22), rgba(247, 99, 146, .1) 70%);
  box-shadow: 0 0 14px rgba(255, 94, 142, .52);
}

.wheel-hub-content__icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff8fb;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wheel-hub-content strong {
  color: #fff9fb;
  font-size: .85rem;
  line-height: 1.15;
}

.wheel-hub-content small {
  margin-top: 3px;
  color: #d0c2ca;
  font-size: .62rem;
  line-height: 1.2;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .about {
    min-height: 85svh;
    padding: 96px 0;
    display: flex;
    align-items: center;
  }

  .about__inner {
    width: 100%;
    grid-template-columns: minmax(380px, .82fr) minmax(510px, 1.18fr);
    gap: 42px;
  }

  .about__heading {
    font-size: clamp(2.85rem, 3.65vw, 3.45rem);
  }

  .about__paragraph {
    font-size: 1.05rem;
  }

  .wheel-wrap {
    min-height: 470px;
  }

  .about-wheel {
    width: min(100%, 640px);
  }
}

@media (max-width: 1023px) {
  .about {
    padding: 72px 0;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: center;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about .stats {
    width: min(100%, 510px);
  }

  .wheel-wrap {
    min-height: 0;
  }

  .about-wheel {
    width: min(100%, 480px);
  }

  .wheel-hub-content {
    width: 156px;
    height: 126px;
    bottom: 12%;
    padding-top: 0;
  }

  .wheel-hub-content__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 6px;
  }

  .wheel-hub-content__icon svg {
    width: 24px;
    height: 24px;
  }

  .wheel-hub-content strong {
    font-size: .76rem;
  }

  .wheel-hub-content small {
    font-size: .54rem;
  }
}

@media (max-width: 640px) {
  .about {
    padding: 58px 0;
  }

  .about__heading {
    font-size: clamp(2.15rem, 10vw, 2.6rem);
  }

  .about__paragraph {
    font-size: .94rem;
  }

  .about .stats {
    gap: 12px;
    margin-top: 32px;
  }

  .about .stat strong {
    font-size: 1.45rem;
  }

  .about .stat span {
    font-size: .62rem;
  }
}

/* For Artists — connected talent map and balanced three-column layout. */
.artists {
  position: relative;
  padding: 76px 0;
}

.artists .eyebrow {
  color: var(--accent-orange-2);
  font-size: .7rem;
  letter-spacing: 2px;
}

.artists__heading {
  max-width: 310px;
  font-size: clamp(2.25rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.artists__heading .text-accent-teal {
  background: linear-gradient(96deg, #4ad7b0, #8ee7ad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.artists__description {
  max-width: 285px;
  font-size: .92rem;
  line-height: 1.62;
}

.artists__cta-group {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.artists__cta-subtext {
  max-width: 130px;
  font-size: .68rem;
  line-height: 1.45;
}

.artists__features {
  gap: 18px;
  padding: 0;
}

.artists .feature-row {
  align-items: center;
  gap: 13px;
}

.artists .feature-icon {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--icon-color) 14%, #151624), rgba(16, 17, 28, .94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 7px 18px color-mix(in srgb, var(--icon-color) 10%, transparent);
}

.artists .feature-icon svg {
  width: 17px;
  height: 17px;
}

.artists .feature-text {
  gap: 3px;
}

.artists .feature-text h3 {
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.25;
}

.artists .feature-text p {
  font-size: .78rem;
  line-height: 1.45;
}

.artists__visual {
  height: auto;
  min-height: 380px;
}

.world-map-container {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1.45 / 1;
  margin: 0 auto;
}

.world-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.world-map-svg .world-map-continents {
  opacity: .28;
}

.world-map-svg .world-map-continents path {
  fill: url(#artistMapDots) !important;
  stroke: #55617a !important;
  stroke-width: 1px !important;
}

.world-map-svg .map-connections {
  opacity: .56;
}

.world-map-svg .map-connections path {
  stroke-width: 1.25px;
  filter: drop-shadow(0 0 3px currentColor);
}

.world-map-svg .map-pins {
  opacity: 1;
}

.world-map-svg .map-pins circle {
  opacity: .95 !important;
  filter: drop-shadow(0 0 5px currentColor);
}

.artist-circles {
  z-index: 2;
}

.artists .artist-circle {
  width: 94px;
  height: 94px;
  border-width: 2px;
  box-shadow: 0 0 18px var(--circle-glow), inset 0 0 0 3px rgba(7, 8, 15, .4);
}

.artists .artist-circle--guitarist {
  top: 6%;
  left: 7%;
  --circle-border: rgba(87, 210, 145, .72);
  --circle-glow: rgba(87, 210, 145, .24);
}

.artists .artist-circle--singer {
  top: 4%;
  right: 5%;
  width: 104px;
  height: 104px;
  --circle-border: rgba(242, 105, 159, .76);
  --circle-glow: rgba(242, 105, 159, .28);
}

.artists .artist-circle--vocalist {
  top: 43%;
  left: 48%;
  width: 112px;
  height: 112px;
  transform: translate(-50%, -50%);
  --circle-border: rgba(81, 218, 211, .78);
  --circle-glow: rgba(81, 218, 211, .3);
}

.artists .artist-circle--speaker {
  bottom: 4%;
  left: 12%;
  --circle-border: rgba(171, 121, 255, .74);
  --circle-glow: rgba(171, 121, 255, .26);
}

.artists .artist-circle--performer {
  right: 13%;
  bottom: 3%;
  --circle-border: rgba(244, 185, 89, .76);
  --circle-glow: rgba(244, 185, 89, .26);
}

.artists .artist-circle--vocalist:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

@media (min-width: 1024px) {
  .artists {
    min-height: 85svh;
    padding: 64px 0;
    display: flex;
    align-items: center;
  }

  .artists__inner {
    width: 100%;
    grid-template-columns: minmax(220px, .8fr) minmax(260px, 1fr) minmax(340px, 1.2fr);
    gap: clamp(32px, 3vw, 48px);
  }
}

@media (max-width: 1023px) {
  .artists {
    padding: 70px 0;
  }

  .artists__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .artists__content,
  .artists__features {
    width: min(100%, 540px);
    margin: 0 auto;
  }

  .artists__visual {
    order: initial;
    min-height: 350px;
  }

  .world-map-container {
    width: min(100%, 500px);
  }
}

@media (max-width: 640px) {
  .artists {
    padding: 56px 0;
  }

  .artists__content {
    align-items: center;
    text-align: center;
  }

  .artists__heading {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .artists__description {
    font-size: .88rem;
  }

  .artists__cta-group {
    flex-direction: column;
  }

  .artists__cta-subtext {
    max-width: 220px;
  }

  .artists__features {
    gap: 15px;
  }

  .artists .feature-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .artists .feature-text h3 {
    font-size: .9rem;
  }

  .artists .feature-text p {
    font-size: .72rem;
  }

  .artists__visual {
    min-height: 280px;
  }

  .artists .artist-circle {
    width: 66px;
    height: 66px;
  }

  .artists .artist-circle--singer {
    width: 74px;
    height: 74px;
  }

  .artists .artist-circle--vocalist {
    width: 82px;
    height: 82px;
  }
}

/* For Artists map: full-container, layered dotted network. */
.artists .artists__visual {
  position: relative;
  width: 100%;
  height: 450px;
  min-height: 450px;
  overflow: hidden;
}

.artists .world-map-container {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
}

.artists .world-map-svg {
  z-index: 0;
  opacity: 1;
}

.artists .artist-circles {
  z-index: 10;
}

.artists .world-map-svg .world-map-continents {
  opacity: .4;
}

.artists .world-map-svg .world-map-continents path {
  fill: url(#artistMapDots) !important;
  stroke: rgba(117, 136, 169, .7) !important;
  stroke-width: 1px !important;
}

.artists .world-map-svg .map-connections {
  opacity: .4;
}

.artists .world-map-svg .map-connections path {
  stroke-width: 1px;
  filter: none;
}

.artists .map-pin circle:first-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 1px;
  transform-box: fill-box;
  transform-origin: center;
  animation: artists-pin-pulse 2.8s ease-out infinite;
}

.artists .map-pin circle:last-child {
  fill: currentColor;
}

.artists .map-pin--cyan { color: #58d8df; }
.artists .map-pin--magenta { color: #ed74b5; }
.artists .map-pin--orange { color: #f6b35b; }
.artists .map-pin--violet { color: #b98bff; }
.artists .map-pin--magenta circle:first-child { animation-delay: .4s; }
.artists .map-pin--orange circle:first-child { animation-delay: .8s; }
.artists .map-pin--violet circle:first-child { animation-delay: 1.2s; }

@keyframes artists-pin-pulse {
  0%, 100% { opacity: .42; transform: scale(.76); }
  50% { opacity: 1; transform: scale(1.3); }
}

@media (min-width: 1024px) {
  .artists .artists__visual {
    height: 500px;
    min-height: 500px;
  }
}

@media (max-width: 1023px) {
  .artists .artists__visual {
    height: 420px;
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .artists .artists__visual {
    height: 320px;
    min-height: 320px;
  }
}

/* Compact For Artists map composition. */
.artists .artists__visual {
  height: 380px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artists .world-map-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 380px;
  margin: 0 auto;
  overflow: hidden;
}

.artists .world-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .35;
  z-index: 0;
}

.artists .artist-circles {
  z-index: 10;
}

.artists .artist-circle {
  width: 85px;
  height: 85px;
}

.artists .artist-circle--guitarist {
  top: 5%;
  left: 8%;
}

.artists .artist-circle--singer {
  top: 5%;
  right: 8%;
  width: 85px;
  height: 85px;
}

.artists .artist-circle--vocalist {
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%);
}

.artists .artist-circle--speaker {
  bottom: 5%;
  left: 18%;
}

.artists .artist-circle--performer {
  right: 12%;
  bottom: 5%;
}

.artists .world-map-svg .world-map-continents {
  opacity: .35;
}

.artists .world-map-svg .map-connections {
  opacity: .4;
}

.artists .world-map-svg .map-connections path {
  stroke: rgba(255, 255, 255, .2) !important;
  stroke-width: 1px;
  stroke-dasharray: 4;
}

@media (min-width: 1024px) {
  .artists {
    min-height: 0;
    padding: 48px 0;
  }

  .artists .artists__visual,
  .artists .world-map-container {
    height: 420px;
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .artists .artists__visual,
  .artists .world-map-container {
    height: 300px;
    min-height: 300px;
  }

  .artists .artist-circle {
    width: 62px;
    height: 62px;
  }

  .artists .artist-circle--singer {
    width: 66px;
    height: 66px;
  }

  .artists .artist-circle--vocalist {
    width: 80px;
    height: 80px;
  }
}

/* High-visibility map and network layer. */
.artists .world-map-svg {
  opacity: 1;
  object-fit: contain;
  z-index: 0;
}

.artists .world-map-svg .world-map-continents {
  opacity: .32;
}

.artists .world-map-svg .world-map-continents path {
  fill: url(#artistMapDots) !important;
  stroke: #06b6d4 !important;
  stroke-width: 1.1px !important;
}

.artists #artistMapDots circle {
  fill: #2563eb !important;
}

.artist-network {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.artist-network__lines path {
  fill: none;
  stroke: rgba(255, 255, 255, .4);
  stroke-width: 1.5px;
  stroke-dasharray: 4 4;
  vector-effect: non-scaling-stroke;
}

.network-pin {
  transform-box: fill-box;
  transform-origin: center;
}

.network-pin path {
  fill: #0d0d17;
  stroke: currentColor;
  stroke-width: 1.8px;
}

.network-pin circle {
  fill: currentColor;
}

.network-pin--cyan { color: #00f2fe; filter: drop-shadow(0 0 6px #00f2fe); }
.network-pin--pink { color: #ff007f; filter: drop-shadow(0 0 6px #ff007f); }
.network-pin--amber { color: #fbbf24; filter: drop-shadow(0 0 6px #fbbf24); }
.network-pin--purple { color: #a855f7; filter: drop-shadow(0 0 6px #a855f7); }
.network-pin--green { color: #10b981; filter: drop-shadow(0 0 6px #10b981); }
.network-pin--teal { color: #14b8a6; filter: drop-shadow(0 0 6px #14b8a6); }

/* Option 3 — wide newsletter / Notify Me. */
.notify {
  position: relative;
  z-index: 1;
  padding: 86px 0;
  overflow: hidden;
}

.notify::before {
  content: '';
  position: absolute;
  right: -12%;
  bottom: -18%;
  width: 520px;
  height: 430px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, .14), transparent 68%);
  pointer-events: none;
}

.notify__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1200px;
}

.notify__content {
  max-width: 570px;
}

.notify .eyebrow {
  color: var(--accent-orange-2);
  font-size: .7rem;
  letter-spacing: 2px;
}

.notify__heading {
  margin: 16px 0 18px;
  color: var(--color-text);
  font: 500 clamp(2.25rem, 5vw, 3.25rem) / 1.1 var(--font-display);
  letter-spacing: -.7px;
}

.notify__heading span {
  background: linear-gradient(96deg, #4ade80, #5eead4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.notify__description {
  max-width: 510px;
  margin-bottom: 26px;
  color: var(--color-text-muted);
  font-size: .95rem;
  line-height: 1.65;
}

.notify__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 540px;
}

.notify__form input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  outline: none;
  background: rgba(18, 17, 26, .9);
  color: #fff;
  font: 400 .82rem var(--font-body);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.notify__form input::placeholder {
  color: #858794;
}

.notify__form input:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, .12);
}

.notify__form button {
  height: 48px;
  flex: 0 0 auto;
  padding: 0 25px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(96deg, #7c3aed, #ec4899 52%, #f43f5e);
  color: #fff;
  cursor: pointer;
  font: 600 .82rem var(--font-body);
  transition: transform .22s var(--ease-premium), box-shadow .22s ease;
}

.notify__form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(236, 72, 153, .4);
}

.notify__form button:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.notify__form-status {
  min-height: 18px;
  margin: 10px 0 0;
  font: 600 .78rem var(--font-body);
}

.notify__form-status:empty {
  margin: 0;
}

.notify__form-status--success {
  color: #4ade80;
}

.notify__form-status--error {
  color: #f87171;
}

.notify__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 570px;
  margin-top: 32px;
}

.notify-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(18, 17, 26, .8);
  color: #c4c5cf;
  font-size: .7rem;
}

.notify-badge svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notify-badge--cyan { color: #72e4ec; }.notify-badge--orange { color: #f7b66f; }.notify-badge--purple { color: #c39bff; }.notify-badge--pink { color: #f290bf; }
.notify-badge span { color: #c4c5cf; }

.notify__visual {
  position: relative;
}

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

@media (min-width: 640px) {
  .notify__form {
    flex-direction: row;
  }

  .notify__form button {
    min-width: 116px;
  }

  .notify__badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .notify-badge {
    padding: 10px 11px;
    font-size: .64rem;
  }
}

@media (min-width: 1024px) {
  .notify {
    padding: 96px 0;
  }

  .notify__inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
    gap: 72px;
  }
}

@media (max-width: 639px) {
  .notify {
    padding: 62px 0;
  }

  .notify__heading {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .notify__description {
    font-size: .88rem;
  }
}


/* ---------- Newsletter envelope visual (Option 3 — exact match) ---------- */

/* CRITICAL: overflow must stay visible so the bell badge is never clipped. */
.notify__visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: visible;
}

/* Subtle ambient purple/violet light beneath the envelope. */
.notify__halo {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 78%;
  background: radial-gradient(ellipse at bottom, rgba(147, 51, 234, .4), rgba(76, 29, 149, .1) 55%, transparent 78%);
  pointer-events: none;
}

.notify__envelope-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  aspect-ratio: 1.5 / 1;
  transform: rotate(-12deg) rotateY(8deg);
  transform-origin: 50% 60%;
  transform-style: preserve-3d;
  filter: drop-shadow(0 0 16px rgba(168, 85, 247, .5)) drop-shadow(0 0 25px rgba(249, 115, 22, .3));
}

.notify-envelope__back,
.notify-envelope__front {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.notify-envelope__back { z-index: 0; }

.notify-envelope__back path {
  fill: rgba(27, 17, 44, .74);
  stroke: url(#envelopeNeon);
  stroke-width: 2.2;
  stroke-linejoin: round;
}

/* Tucked letter card — dark glass, sliding out vertically from the pocket. */
.notify-envelope__letter {
  position: absolute;
  z-index: 10;
  top: 12%;
  left: 25%;
  width: 50%;
  height: 56%;
  padding: 16px;
  border: 1px solid rgba(168, 85, 247, .3);
  border-radius: 12px;
  background: rgba(26, 20, 41, .9);
  box-shadow: 0 15px 26px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.notify-envelope__letter span {
  display: block;
  height: 6px;
  margin-bottom: 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, #c084fc, #fb7185);
  box-shadow: 0 0 10px rgba(168, 85, 247, .35);
}

.notify-envelope__letter span:nth-child(2) { width: 82%; }
.notify-envelope__letter span:nth-child(3) { width: 64%; }

.notify-envelope__front { z-index: 20; }

.notify-envelope__front path:first-child {
  fill: rgba(13, 12, 23, .92);
  stroke: url(#envelopeNeon);
  stroke-width: 2.2;
}

.notify-envelope__front path:last-child {
  stroke: url(#envelopeNeon);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Notification bell — pinned to the flap's top-right corner fold. */
.notify__bell {
  position: absolute;
  z-index: 30;
  top: -16px;
  right: -8px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f43f5e, #f97316);
  box-shadow: 0 0 20px rgba(244, 63, 94, .8);
}

.notify__bell svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 1024px) {
  .notify__visual { min-height: 390px; }
}

@media (max-width: 639px) {
  .notify__visual { min-height: 275px; }
  .notify__envelope-stage {
    width: min(100%, 340px);
    transform: rotate(-10deg) rotateY(6deg);
  }
  .notify-envelope__letter { padding: 12px; }
  .notify-envelope__letter span { height: 5px; margin-bottom: 9px; }
  .notify__bell { top: -12px; right: -6px; width: 34px; height: 34px; }
  .notify__bell svg { width: 17px; height: 17px; }
}

/* Interactive About-wheel polish: each SVG panel behaves as its own radial control. */
.about-wheel .wheel-panel { cursor: pointer; transform-box: fill-box; transform-origin: center; transition: transform 300ms ease-out, filter 300ms ease-out; }
.about-wheel .wheel-panel path { transition: filter 300ms ease-out, fill 300ms ease-out, stroke 300ms ease-out; }
.about-wheel .wheel-panel:hover { transform: scale(1.03); filter: brightness(1.3) saturate(1.5) drop-shadow(0 0 18px rgba(255,255,255,.45)); }
.about-wheel .wheel-panel:hover path { filter: none; stroke-width: 1.45px; }
.about-wheel .wheel-panel .wheel-ic { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.about-wheel .wheel-panel.magicians .wheel-ic { color:#b3a5ff; }.about-wheel .wheel-panel.musicians .wheel-ic { color:#8fc3ff; }.about-wheel .wheel-panel.singers .wheel-ic { color:#7fe6c8; }.about-wheel .wheel-panel.comedians .wheel-ic { color:#f0d878; }.about-wheel .wheel-panel.hosts .wheel-ic { color:#ffb066; }.about-wheel .wheel-panel.djs .wheel-ic { color:#e29bee; }.about-wheel .wheel-panel.makeup .wheel-ic { color:#f592c0; }.about-wheel .wheel-panel.dancers .wheel-ic { color:#ffab5e; }
.wheel-hub-shape { stroke-linecap: round; stroke-linejoin: round; }
.wheel-hub-content__icon svg { width: 32px; height: 32px; }

/* Upright HTML stacks sit at each SVG midpoint; petal rotation never affects icon/text orientation. */
.about-wheel .wheel-panel > .wheel-ic,
.about-wheel .wheel-panel > text { display: none; }
.wheel-labels { pointer-events: none; }
.wheel-label { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: #fff; font: 500 11px/1.05 var(--font-body); text-align: center; white-space: nowrap; }
.wheel-label svg { width: 22px; height: 22px; flex: 0 0 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.wheel-label--magicians { color: #d0c2ff; }.wheel-label--musicians { color: #b6d6ff; }.wheel-label--singers { color: #a3f1d6; }.wheel-label--comedians { color: #f7e790; }.wheel-label--hosts { color: #ffc17e; }.wheel-label--djs { color: #d7b2ff; }.wheel-label--makeup { color: #ffb3da; }.wheel-label--dancers { color: #ffb0a4; }
.wheel-label span { color: #fff; }

/* ---------- Global layout polish ---------- */
/* One page grid keeps every section and the navbar on the same visual line. */
:root { --container-w: 1280px; }

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body,
main { overflow-x: hidden; }

main > section[id] { scroll-margin-top: 80px; }

.section-divider {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 1152px);
  height: 1px;
  margin: 8px auto;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, .2), transparent);
}

/* Keep the landing page compact without changing the hero's carefully tuned viewport fit. */
.about,
.hiring,
.artists,
.notify {
  min-height: 0;
  padding-block: 40px;
}

@media (min-width: 640px) {
  .container { padding-inline: 24px; }
}

@media (min-width: 768px) {
  .about,
  .hiring,
  .artists,
  .notify { padding-block: 64px; }
}

@media (min-width: 1024px) {
  .container { padding-inline: 32px; }
  html { scroll-padding-top: 96px; }
  main > section[id] { scroll-margin-top: -58px; }
}
@media (min-width: 1024px) {
  .about { scroll-margin-top: -80px!important }
}


@media (max-width: 767px) {
  .about__content,
  .hiring__content,
  .artists__content,
  .notify__content {
    text-align: center;
  }

  .about__heading,
  .hiring__heading,
  .artists__heading,
  .notify__heading {
    max-width: 100%;
    font-size: clamp(2rem, 8.4vw, 2.6rem);
  }

  .about__paragraph,
  .hiring__content > p,
  .artists__description,
  .notify__description {
    margin-inline: auto;
  }

  .hero__ctas {
    justify-content: center;
    flex-wrap: wrap;
  }

  .artists__cta-group {
    align-items: center;
  }

  .btn--artists {
    width: min(100%, 280px);
    justify-content: center;
  }

  .notify__form {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .hero__visual,
  .artists__visual,
  .world-map-container,
  .about-wheel {
    max-width: 100%;
  }

  .about-wheel {
    height: auto;
    transform-origin: center;
  }
}

/* ---------- Final alignment, navigation, and interaction polish ---------- */
/* Pull the shared content grid inward on wider screens without changing its max width. */
.container {
  max-width: 1280px;
  padding-inline: 24px;
}

.navbar .navbar__inner { max-width: 1280px; }

@media (min-width: 640px) {
  .container { padding-inline: 40px; }
}

@media (min-width: 1024px) {
  .container { padding-inline: 64px; }
}

/* The navbar remains available without consuming document flow. */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  z-index: 100;
  background: rgba(10, 9, 20, .85);
  border-bottom-color: rgba(255, 255, 255, .1);
}

.hero {
  padding-top: calc(var(--navbar-h) + 24px);
}

@media (min-width: 1024px) {
  .hero { padding-top: calc(var(--navbar-h) + 32px); }
}

/* Compact transitions between the narrative sections. */
.about,
.hiring,
.artists,
.notify { padding-block: 32px; }

@media (min-width: 768px) {
  .about,
  .hiring,
  .artists,
  .notify { padding-block: 48px; }
}

/* Keep the category wheel optically level with the stronger About copy. */
@media (min-width: 980px) {
  .wheel-wrap {
    min-height: 440px;
    transform: translateY(24px) scale(1.08);
    transform-origin: top right;
  }

  .about-wheel { width: min(100%, 590px); }
}

/* Deliberate, restrained feedback for clickable elements. */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: #a78bfa;
  box-shadow: 0 0 9px rgba(167, 139, 250, .55);
  transition: width .28s var(--ease-premium);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }

.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn:active { transform: translateY(0) scale(.97); }

.photo-card,
.event-card,
.notify-badge {
  transition: transform .3s var(--ease-premium), border-color .3s ease, box-shadow .3s ease;
}

.photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, .5);
  box-shadow: 0 0 20px rgba(168, 85, 247, .22), 0 18px 34px rgba(0, 0, 0, .38);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(168, 85, 247, .18), 0 14px 30px rgba(0, 0, 0, .3);
}

.notify-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 85, 247, .42);
  box-shadow: 0 0 18px rgba(168, 85, 247, .14);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wheel-wrap,
  .btn,
  .photo-card,
  .event-card,
  .notify-badge,
  .nav-links a::after { transition: none; }
}

/* About wheel: align its enlarged visual mass with the display heading and stats. */
@media (min-width: 768px) {
  .wheel-wrap {
    min-height: 420px;
    transform: translateY(24px) scale(1.10);
    transform-origin: top right;
  }
}

@media (min-width: 980px) {
  .about__inner { align-items: start; }

  .wheel-wrap {
    min-height: 390px;
    transform: translateY(32px) scale(1.15);
    transform-origin: top right;
  }

  .about-wheel { width: min(100%, 620px); }
}

/* Newsletter visual cleanup: a clean ambient envelope with no crowd or backdrop slab. */
.notify__visual {
  min-height: 320px;
  overflow: visible;
}

.notify__halo {
  right: 8%;
  bottom: 2%;
  left: 8%;
  width: auto;
  height: 58%;
  background: radial-gradient(ellipse at 50% 100%, rgba(139, 92, 246, .28), rgba(94, 48, 153, .07) 54%, transparent 76%);
  filter: blur(16px);
}

.notify__envelope-stage {
  width: min(100%, 390px);
  transform: rotate(12deg) rotateY(-6deg);
  filter: drop-shadow(0 0 15px rgba(168, 85, 247, .4));
}

/* A slim flap outline replaces the old filled trapezoid behind the envelope. */
.notify-envelope__back path {
  fill: none;
  stroke: url(#envelopeNeon);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notify-envelope__letter {
  top: 11%;
  left: 24%;
  width: 52%;
  height: 58%;
  padding: 15px;
  border: 1px solid rgba(168, 85, 247, .3);
  border-radius: 16px;
  background: rgba(19, 17, 36, .8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.notify-envelope__front path:first-child {
  fill: rgba(14, 12, 25, .84);
  stroke-width: 1.5;
}

.notify-envelope__front path:last-child { stroke-width: 1.5; }

.notify__bell {
  top: 30px;
  right: 40px;
  width: 36px;
  height: 36px;
  box-shadow: 0 0 15px rgba(244, 63, 94, .7);
}

.notify__bell svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 639px) {
  .notify__visual { min-height: 265px; }
  .notify__envelope-stage {
    width: min(100%, 330px);
    transform: rotate(10deg) rotateY(-5deg);
  }
  .notify__bell { top: -5px; right: 22px; }
}

/* ---------- Mobile and tablet-only responsive safeguards ---------- */
/* These overrides stop before the desktop breakpoint, leaving lg+ untouched. */
@media (max-width: 767px) {
  html { scroll-padding-top: 96px; }
  main > section[id] { scroll-margin-top: 96px; }

  /* Hero — centered content and 3-card collage on mobile */
  .hero {
    width: 100%;
    text-align: center;
    margin-inline: auto;
    overflow-x: hidden;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-inline: auto;
  }

  .hero__paragraph { text-align: center; }

  .hero__ctas {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .hero__visual {
    display: flex;
    justify-content: center;
    margin-inline: auto;
    width: 100%;
  }

  .photo-collage {
    margin-inline: auto;
    left: 0;
    right: 0;
    max-width: 320px;
    transform: rotate(6deg) scale(0.9);
    justify-content: center;
  }

  /* Category pills — closer to top cards, no overlap */
  .cat-badge--musicians {
    top: 0;
    left: 4px;
    z-index: 30;
    transform: scale(0.9);
    animation: floaty-scaled 6s ease-in-out infinite;
  }

  .cat-badge--hosts {
    top: 0;
    right: 4px;
    z-index: 30;
    transform: scale(0.9);
    animation: floaty-scaled 6s ease-in-out infinite 1.2s;
  }

  @keyframes floaty-scaled {
    0%, 100% { transform: scale(0.9) translateY(0); }
    50% { transform: scale(0.9) translateY(-8px); }
  }

  .about__heading,
  .hiring__heading,
  .artists__heading,
  .notify__heading { text-align: center; }

  /* Mobile wheel hub — compact pink core with label below arc */
  .wheel-hub-content {
    bottom: 23%;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
  }

  .wheel-hub-content__icon {
    position: relative;
    top: auto;
    left: auto;
    width: 80px;
    height: 80px;
    margin: 0;
    transform: none;
  }

  .wheel-hub-content__icon svg {
    width: 20px;
    height: 20px;
  }

  .wheel-hub-content strong {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 4px;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
    white-space: nowrap;
  }

  .wheel-hub-content small {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 2px;
    font-size: 9px;
    white-space: nowrap;
  }
}

@media (max-width: 639px) {
  .hero__ctas { flex-direction: column; gap: 16px; }

  /* Preserve the singer, musician and host; remove the second row on phones. */
  .photo-collage {
    width: 100%;
    max-width: 320px;
    height: 270px;
    transform: rotate(6deg) scale(0.9);
  }

  .photo-card--singer {
    position: absolute;
    top: 25px;
    left: calc(50% - 69px);
    width: 138px;
    height: 205px;
  }

  .photo-card--guitarist,
  .photo-card--dj {
    top: 80px;
    width: 110px;
    height: 150px;
  }

  .photo-card--guitarist { left: 0; }
  .photo-card--dj { right: 0; }

  .photo-card--comedian,
  .photo-card--makeup,
  .cat-badge--comedians,
  .cat-badge--makeup { display: none; }

  .hero__visual { min-height: 300px; }
}

@media (min-width: 640px) and (max-width: 767px) {
  .hero__ctas { flex-direction: row; gap: 16px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  html { scroll-padding-top: 112px; }
  main > section[id] { scroll-margin-top: 112px; }


  .hero__inner,
  .about__inner,
  .hiring__main,
  .notify__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
  }

  .artists__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
  }

  .artists__visual {
    grid-column: 1 / -1;
    order: initial;
  }

  .about__inner,
  .about__content { text-align: left; }

  .about__content { align-items: flex-start; }

  /* Notify — 4 badge cards: tighter padding & type so labels stay inside borders */
  .notify__badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 100%;
  }

  .notify-badge {
    min-width: 0;
    min-height: auto;
    gap: 6px;
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
  }

  .notify-badge svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
  }

  .notify-badge span {
    min-width: 0;
    font-size: inherit;
    font-weight: 500;
    white-space: nowrap;
  }

  /* About wheel — lift pink hub so teammates icon sits inside the semicircle arc */
  .wheel-hub-content {
    bottom: 8%;
    transform: translateX(-50%) translateY(-16px);
  }

  .wheel-hub-content strong {
    margin-top: 4px;
    white-space: nowrap;
  }

  /* Hero — scale collage down and spread outer cards so they frame the singer */
  .photo-collage {
    max-width: 440px;
    margin-inline: auto;
    transform: rotate(6deg) scale(0.8);
    transform-origin: center center;
  }

  .photo-card--guitarist {
    left: -14px;
    top: 82px;
  }

  .photo-card--dj {
    right: -14px;
    top: 14px;
  }

  .photo-card--comedian {
    left: -14px;
    bottom: 14px;
  }

  .photo-card--makeup {
    right: -14px;
    bottom: 82px;
  }

  .hero__visual {
    min-height: 380px;
  }
}

/* ---------- Final sitewide refinement: fluid canvas, retained compositions ---------- */
/* Preserve the 1280px composition, then open the canvas progressively for wider displays. */
@media (min-width: 1440px) {
  :root { --container-w: 1420px; }
  .container,
  .navbar .navbar__inner { max-width: 1420px; padding-inline: 40px; }
}

@media (min-width: 1600px) {
  :root { --container-w: 1520px; }
  .container,
  .navbar .navbar__inner { max-width: 1520px; padding-inline: 48px; }
}

@media (min-width: 1920px) {
  :root { --container-w: 1580px; }
  .container,
  .navbar .navbar__inner { max-width: 1580px; padding-inline: 52px; }
}

/* The additional labels complete the collage perimeter without covering portraits. */
.hero__visual { isolation: isolate; }
.cat-badge--singers { top: 4px; left: 42%; animation-delay: .6s; }
.cat-badge--magicians { top: 46%; left: -18px; animation-delay: 1.8s; }
.cat-badge--dancers { bottom: 4px; left: 0; animation-delay: 2.8s; }
.cat-badge--djs { bottom: 4px; right: 0; animation-delay: 3.7s; }

/* Three meaningful statistics retain the original rhythm without an empty slot. */
.about .stats {
  grid-template-columns: repeat(3, minmax(92px, max-content));
  max-width: 430px;
  column-gap: clamp(22px, 3vw, 38px);
}

/* A subtle glass surface gives the category visual depth without changing its fan geometry. */
.about .wheel-wrap {
  isolation: isolate;
  border-radius: 46% 46% 30% 30%;
}

.about .wheel-wrap::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: min(88%, 540px);
  height: 72%;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(189, 163, 255, .12);
  border-radius: 48% 48% 30% 30%;
  background:
    radial-gradient(circle at 50% 83%, rgba(237, 80, 145, .12), transparent 38%),
    linear-gradient(145deg, rgba(42, 37, 67, .28), rgba(9, 10, 18, .03) 66%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 20px 45px rgba(0, 0, 0, .16);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.about-wheel {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .24));
}

.wheel-panel path {
  stroke: rgba(248, 245, 255, .2);
  stroke-width: 1.12px;
}

@media (min-width: 980px) {
  .wheel-wrap {
    min-height: 404px;
    transform: translateY(15px) scale(1.03);
  }

  .about-wheel { width: min(100%, 580px); }
}

/* The artists section carries the alternating visual-left / content-right cadence on wider screens. */
@media (min-width: 1200px) {
  .artists__inner {
    grid-template-columns: minmax(390px, 1.22fr) minmax(230px, .74fr) minmax(220px, .7fr);
    gap: clamp(26px, 2.6vw, 46px);
  }

  .artists__visual { grid-column: 1; grid-row: 1; }
  .artists__content { grid-column: 2; grid-row: 1; }
  .artists__features { grid-column: 3; grid-row: 1; }
}

/* Larger, recognisable map outline stays atmospheric; profiles and routes remain the foreground. */
.artists .world-map-container { overflow: visible; }
.artists .world-map-svg {
  transform: scale(1.045);
  transform-origin: center;
}
.artists .world-map-svg .world-map-continents { opacity: .38; }
.artists .world-map-svg .world-map-continents path {
  fill: url(#artistMapDots) !important;
  stroke: rgba(76, 210, 207, .78) !important;
  stroke-width: 1.35px !important;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(73, 179, 214, .18));
}
.artist-network__lines path {
  stroke: rgba(184, 202, 255, .43);
  stroke-width: 1.25px;
}

@media (max-width: 767px) {
  .hero__visual { min-height: 350px; padding-bottom: 42px; }
  .cat-badge {
    display: inline-flex !important;
    padding: 4px 7px;
    gap: 4px;
    font-size: .52rem;
    line-height: 1;
  }
  .cat-badge__icon { font-size: .66rem; }
  .cat-badge--musicians { top: -4px; left: 0; }
  .cat-badge--singers { top: -4px; left: 50%; transform: translateX(-50%); }
  .cat-badge--hosts { top: -4px; right: 0; }
  .cat-badge--magicians { top: 244px; left: 0; }
  .cat-badge--dancers { top: 244px; bottom: auto; left: 50%; transform: translateX(-50%); }
  .cat-badge--djs { top: 244px; right: 0; bottom: auto; }
  .cat-badge--comedians { top: 278px; bottom: auto; left: 4%; }
  .cat-badge--makeup { top: 278px; right: 9%; bottom: auto; }

  .about .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 360px;
    column-gap: 12px;
  }

  .artists .world-map-svg { transform: scale(1.01); }
}

/* Keep every desktop collage label in the negative space around its card, not over imagery. */
@media (min-width: 768px) {
  .cat-badge--musicians { top: 0; left: 0; }
  .cat-badge--hosts { top: 0; right: 0; }
  .cat-badge--magicians { top: 200px; left: -140px; }
  .cat-badge--comedians { top: 260px; bottom: auto; left: -142px; }
  .cat-badge--makeup { top: auto; bottom: -12px; right: 165px; }
  .cat-badge--dancers { bottom: -12px; left: 0; }
  .cat-badge--djs { bottom: -12px; right: 0; }
}

/* Five event cards still read as a single compact showcase at the tablet desktop edge. */
@media (min-width: 980px) and (max-width: 1199px) {
  .event-showcase { gap: 6px; }
  .event-card { width: 88px; height: 230px; flex: 0 0 88px; }
  .event-card h3 { font-size: .61rem; }
  .event-card p { font-size: .45rem; }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .cat-badge--hosts,
  .cat-badge--singers { top: -18px; }
  .cat-badge--comedians { top: 232px; }
}

@media (min-width: 1200px) {
  .cat-badge--comedians { top: 240px; }
}

@media (max-width: 767px) {
  .cat-badge--magicians,
  .cat-badge--dancers,
  .cat-badge--djs { top: 260px; }
  .cat-badge--comedians,
  .cat-badge--makeup { top: 286px; }
}

/* ---------- Targeted alignment corrections ---------- */
/* The Artists wrapper is a full-width flex item; its shared container now centers at every zoom level. */
.artists__wrapper {
  width: 100%;
  flex: 0 0 100%;
}

.artists__inner {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
}

/* About alternates the desktop rhythm: visual left, editorial copy right. */
@media (min-width: 1024px) {
  .about__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    gap: clamp(36px, 5vw, 82px);
    align-items: center;
  }

  .about .wheel-wrap {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    min-height: 390px;
    transform: translateY(8px) scale(1);
    transform-origin: center left;
  }

  .about__content {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    text-align: left;
  }
}

/* The wheel keeps its local segment colour, without a backdrop slab or global shadow. */
.about .wheel-wrap::before { content: none; }
.about-wheel { filter: none; }

@media (max-width: 1023px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__content { order: 1; }
  .about .wheel-wrap {
    order: 2;
    transform: none;
  }
}

/* All Hero labels remain in the top/side orbit of the collage on desktop. */
@media (min-width: 1200px) {
  .cat-badge--musicians { top: 20px; left: 430px; }
  .cat-badge--singers { top: 45px; left: 1%; }
  .cat-badge--hosts { top: 230px; right: -32px; }
  .cat-badge--makeup { top: 420px; bottom: auto; left: 80%; right: auto; }
  .cat-badge--dancers { top: 400px; bottom: auto; left: 40%; }
  .cat-badge--magicians { top: 56px; left: 44%; }
  .cat-badge--djs { top: 420px; bottom: auto; left: auto;right: 430px;}
  .cat-badge--comedians { top: 260px; bottom: auto; left: -60px; }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .cat-badge--musicians { top: -4px; left: 0; }
  .cat-badge--singers { top: -4px; left: 39%; }
  .cat-badge--hosts { top: -4px; right: 0; }
  .cat-badge--makeup { top: 36px; bottom: auto; left: 17%; right: auto; }
  .cat-badge--dancers { top: 36px; bottom: auto; left: 50%; }
  .cat-badge--magicians { top: 44px; left: 60%; }
  .cat-badge--djs { top: 76px; bottom: auto; left: auto; right: 0; }
  .cat-badge--comedians { top: 188px; bottom: auto; left: -136px; }
}

@media (max-width: 767px) {
  .hero__visual { min-height: 410px; }
  .photo-collage { transform: translateY(48px) rotate(6deg) scale(.9); }
  .cat-badge--musicians { top: 0; left: 0; }
  .cat-badge--singers { top: 0; left: 50%; }
  .cat-badge--hosts { top: 0; right: 0; }
  .cat-badge--magicians { top: 26px; left: 0; }
  .cat-badge--djs { top: 26px; left: 50%; right: auto; }
  .cat-badge--makeup { top: 26px; right: 0; }
  .cat-badge--comedians { top: 52px; left: 9%; }
  .cat-badge--dancers { top: 52px; left: auto; right: 9%; }
}

/* ---------- Targeted hiring-strip and About-wheel polish ---------- */
.trust-item {
  align-items: flex-start;
  gap: 13px;
}

.trust-item b {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  font-size: .9rem;
}

.trust-item span { gap: 3px; max-width: 175px; }
.trust-item strong { font-size: .69rem; line-height: 1.25; }
.trust-item small { font-size: .58rem; line-height: 1.4; }

@media (max-width: 640px) {
  .trust-item { gap: 10px; }
  .trust-item b { width: 29px; height: 29px; flex-basis: 29px; }
  .trust-item strong { font-size: .68rem; }
  .trust-item small { font-size: .57rem; }
}

/* Increase the wheel's visual weight while retaining the established two-column composition. */
@media (min-width: 1440px) {
  .about .wheel-wrap {
    min-height: 430px;
    transform: translateY(4px) scale(1.13);
    transform-origin: center left;
  }
  .about .about-wheel { width: min(100%, 600px); }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .about .wheel-wrap {
    min-height: 414px;
    transform: translateY(4px) scale(1.08);
    transform-origin: center left;
  }
  .about .about-wheel { width: min(100%, 535px); }
}

/* Glass segments: restrained colour, smoother seams, highlights and controlled depth. */
.about-wheel .wheel-panel path {
  fill-opacity: .9;
  stroke: color-mix(in srgb, var(--wheel-glow) 58%, rgba(255, 255, 255, .24));
  stroke-width: 1px;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, .2)) drop-shadow(0 0 7px color-mix(in srgb, var(--wheel-glow) 22%, transparent));
}

.about-wheel .wheel-panel:hover path {
  stroke-width: 1.2px;
  filter: drop-shadow(0 6px 11px rgba(0, 0, 0, .22)) drop-shadow(0 0 11px color-mix(in srgb, var(--wheel-glow) 36%, transparent));
}

.about-wheel .wheel-label {
  text-shadow: 0 1px 3px rgba(0, 0, 0, .65);
}

.about-wheel .wheel-label svg {
  filter: drop-shadow(0 0 5px currentColor);
}

.wheel-hub-bloom { opacity: .36; }
.wheel-hub-shape {
  stroke: rgba(255, 177, 198, .72);
  stroke-width: 1.1px;
  filter: drop-shadow(0 7px 15px rgba(235, 79, 127, .28));
}

.wheel-hub-content__icon {
  border-color: rgba(255, 184, 205, .76);
  background: radial-gradient(circle at 38% 18%, rgba(255,255,255,.3), rgba(246, 100, 146, .16) 62%, rgba(27, 13, 27, .38));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 0 16px rgba(255, 103, 150, .38);
}

.wheel-hub-content small {
  color: rgba(246, 230, 237, .82);
  text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
}

/* Final About-wheel refinement: a slightly stronger silhouette with quieter glass seams. */
@media (min-width: 1440px) {
  .about .wheel-wrap {
    transform: translateY(4px) scale(1.16);
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .about .wheel-wrap {
    transform: translateY(4px) scale(1.12);
  }
}

.about-wheel .wheel-panel path {
  fill-opacity: .86;
  stroke: color-mix(in srgb, var(--wheel-glow) 38%, rgba(255, 255, 255, .2));
  stroke-opacity: .66;
  stroke-width: .72px;
  stroke-linecap: round;
  stroke-linejoin: round;
  paint-order: stroke fill;
  filter:
    drop-shadow(0 4px 8px rgba(0, 0, 0, .16))
    drop-shadow(0 0 6px color-mix(in srgb, var(--wheel-glow) 16%, transparent));
}

.about-wheel .wheel-panel:hover path {
  stroke-opacity: .84;
  stroke-width: .92px;
  filter:
    drop-shadow(0 5px 9px rgba(0, 0, 0, .18))
    drop-shadow(0 0 9px color-mix(in srgb, var(--wheel-glow) 28%, transparent));
}

.about-wheel .wheel-label {
  border-radius: 12px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .72), 0 0 7px color-mix(in srgb, var(--wheel-glow) 15%, transparent);
}

.wheel-hub-bloom { opacity: .3; }

.wheel-hub-shape {
  fill-opacity: .92;
  stroke: rgba(255, 184, 204, .5);
  stroke-width: .82px;
  filter:
    drop-shadow(0 6px 13px rgba(235, 79, 127, .18))
    drop-shadow(0 0 10px rgba(255, 132, 91, .12));
}

.wheel-hub-content__icon {
  background:
    radial-gradient(circle at 35% 18%, rgba(255, 255, 255, .34), rgba(255, 137, 169, .17) 48%, rgba(29, 14, 29, .44) 100%);
  border-color: rgba(255, 193, 210, .62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .24),
    inset 0 -10px 18px rgba(67, 13, 37, .12),
    0 0 14px rgba(255, 103, 150, .28);
}

/* Keep the fan centred in its own grid column; the existing 12-16% scale is intentional. */
@media (min-width: 1024px) {
  .about .wheel-wrap {
    align-self: center;
    justify-self: center;
  }
}

/* Always-on illuminated glass â€” hover only adds a restrained finishing lift. */
.about-wheel .wheel-panel {
  filter:
    brightness(1.035)
    saturate(1.1)
    drop-shadow(0 3px 7px rgba(0, 0, 0, .14))
    drop-shadow(0 0 9px color-mix(in srgb, var(--wheel-glow) 21%, transparent));
}

.about-wheel .wheel-panel path {
  fill-opacity: .84;
  stroke: color-mix(in srgb, var(--wheel-glow) 31%, rgba(255, 255, 255, .18));
  stroke-opacity: .52;
  stroke-width: .58px;
  vector-effect: non-scaling-stroke;
  filter:
    drop-shadow(0 2px 5px rgba(0, 0, 0, .11))
    drop-shadow(0 0 9px color-mix(in srgb, var(--wheel-glow) 21%, transparent));
}

.about-wheel .wheel-panel:hover {
  transform: scale(1.012);
  filter:
    brightness(1.085)
    saturate(1.18)
    drop-shadow(0 4px 9px rgba(0, 0, 0, .17))
    drop-shadow(0 0 13px color-mix(in srgb, var(--wheel-glow) 31%, transparent));
}

.about-wheel .wheel-panel:hover path {
  stroke-opacity: .64;
  stroke-width: .7px;
}

.about-wheel .wheel-label {
  text-shadow:
    0 1px 3px rgba(0, 0, 0, .78),
    0 0 8px color-mix(in srgb, var(--wheel-glow) 22%, transparent);
}

/* ---------- About ecosystem orbit replacement ---------- */
.about {
  min-height: 0;
  padding: clamp(62px, 6vw, 86px) 0;
  display: block;
}

.about .about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr);
  align-items: center;
  gap: clamp(40px, 5vw, 78px);
}

.about .about__content {
  grid-column: 2;
  grid-row: 1;
  order: initial;
  justify-self: start;
  width: min(100%, 430px);
  max-width: 430px;
  text-align: left;
}

.about .about__heading {
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 3.45vw, 3.45rem);
  line-height: 1.05;
}

.about .about__paragraph {
  margin-bottom: 25px;
  color: rgba(238, 235, 230, .76);
  font-size: clamp(.88rem, 1.05vw, 1rem);
  line-height: 1.62;
}

.about__accent {
  color: #63d8c0;
  text-shadow: 0 0 14px rgba(99, 216, 192, .12);
}

.about .about__cta {
  min-height: 42px;
  padding-inline: 18px;
  border-color: rgba(224, 219, 232, .3);
  background: rgba(17, 17, 28, .42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 7px 18px rgba(0,0,0,.13);
  font-size: .76rem;
}

.ecosystem-orbit {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  width: min(100%, 620px);
  min-height: 460px;
  aspect-ratio: 1.28;
  isolation: isolate;
}

.ecosystem-orbit__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
}

.ecosystem-orbit__ring--outer {
  width: 70%;
  height: 82%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(144, 162, 210, .25);
  box-shadow: inset 0 0 24px rgba(69, 112, 174, .05), 0 0 20px rgba(93, 80, 177, .05);
}

.ecosystem-orbit__ring--inner {
  width: 46%;
  height: 54%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(173, 151, 230, .16);
  box-shadow: inset 0 0 18px rgba(246, 114, 135, .035);
}

.ecosystem-orbit__point {
  position: absolute;
  z-index: 1;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e5b6ff;
  box-shadow: 0 0 10px currentColor;
}

.ecosystem-orbit__point--one { top: 19%; left: 29%; color: #7fe6d0; background: #7fe6d0; }
.ecosystem-orbit__point--two { top: 29%; right: 21%; color: #f6d475; background: #f6d475; }
.ecosystem-orbit__point--three { right: 25%; bottom: 24%; color: #f291c5; background: #f291c5; }

.ecosystem-hub {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(156px, 30%, 188px);
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgba(226, 176, 221, .32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 25%, rgba(240, 159, 255, .12), transparent 36%),
    radial-gradient(circle at 72% 75%, rgba(255, 151, 77, .12), transparent 42%),
    rgba(10, 11, 19, .68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 0 25px rgba(191, 108, 214, .08), 0 0 30px rgba(255, 136, 81, .06);
  transform: translate(-50%, -50%);
  text-align: center;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.ecosystem-hub .brand-name {
  justify-content: center;
  width: 100%;
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
}

.ecosystem-hub p { margin: 12px 0 0; color: rgba(232, 227, 231, .8); font-size: .65rem; line-height: 1.45; }

.orbit-node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 244, 240, .88);
  font-size: clamp(.62rem, 1.15vw, .73rem);
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
  white-space: nowrap;
  transform: translate(-50%, -50%);
  transition: transform .28s var(--ease-premium), filter .28s ease;
}

.orbit-node__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--node-accent) 48%, rgba(255,255,255,.2));
  border-radius: 50%;
  background: radial-gradient(circle at 34% 24%, rgba(255,255,255,.14), rgba(13, 15, 25, .82) 70%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 13px color-mix(in srgb, var(--node-accent) 20%, transparent);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.orbit-node svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--node-accent);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--node-accent) 55%, transparent));
}

.orbit-node--musicians { top: 7%; left: 50%; flex-direction: column-reverse; gap: 5px; }
.orbit-node--comedians { top: 20%; left: 80%; }
.orbit-node--hosts { top: 52%; left: 88%; }
.orbit-node--makeup { top: 81%; left: 80%; }
.orbit-node--dancers { top: 92%; left: 50%; flex-direction: column; gap: 5px; }
.orbit-node--magicians { top: 81%; left: 22%; flex-direction: row-reverse; }
.orbit-node--djs { top: 52%; left: 10%; flex-direction: row-reverse; }
.orbit-node--singers { top: 20%; left: 20%; flex-direction: row-reverse; }

@media (hover: hover) {
  .orbit-node:hover {
    filter: brightness(1.16) saturate(1.18) drop-shadow(0 0 9px color-mix(in srgb, var(--node-accent) 38%, transparent));
    transform: translate(-50%, -50%) scale(1.045);
  }
}

@media (max-width: 1023px) {
  .about { padding-block: 62px; }
  .about .about__inner { grid-template-columns: 1fr; gap: 34px; }
  .about .about__content { grid-column: auto; grid-row: auto; order: 1; justify-self: center; max-width: 540px; text-align: center; }
  .ecosystem-orbit { grid-column: auto; grid-row: auto; order: 2; width: min(100%, 590px); min-height: 430px; }
}

@media (max-width: 640px) {
  .about { padding-block: 54px; }
  .about .about__heading { font-size: clamp(2.25rem, 11vw, 2.8rem); }
  .about .about__paragraph br { display: none; }
  .ecosystem-orbit { min-height: 285px; width: min(100%, 300px); }
  .ecosystem-orbit__ring--outer { width: 64%; height: 76%; }
  .ecosystem-orbit__ring--inner { width: 42%; height: 50%; }
  .ecosystem-hub { width: 38%; }
  .ecosystem-hub strong { font-size: 1rem; }
  .ecosystem-hub p { margin-top: 8px; font-size: .49rem; }
  .orbit-node { gap: 5px; font-size: .52rem; }
  .orbit-node__icon { width: 31px; height: 31px; flex-basis: 31px; }
  .orbit-node svg { width: 15px; height: 15px; }
  .orbit-node--comedians { left: 82%; }
  .orbit-node--hosts { left: 83%; }
  .orbit-node--makeup { left: 79%; }
}

/* ---------- For Artists: supplied artist-network SVG ---------- */
@media (min-width: 1024px) {
  .artists .artists__inner {
    grid-template-columns: minmax(0, 1.24fr) minmax(220px, .7fr) minmax(280px, 1fr);
    align-items: center;
    gap: clamp(28px, 3vw, 48px);
  }

  .artists .artists__visual {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
  }

  .artists .artists__content {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .artists .artists__features {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
  }
}

.artists .artists__visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  min-width: 0;
  min-height: 0;
  place-items: center;
  overflow: visible;
}

.artists__network-svg {
  display: block;
  width: min(100%, 620px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 1023px) {
  .artists .artists__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .artists .artists__content { grid-column: auto; grid-row: auto; order: 1; }
  .artists .artists__features { grid-column: auto; grid-row: auto; order: 2; }
  .artists .artists__visual { grid-column: auto; grid-row: auto; order: 3; width: min(100%, 620px); justify-self: center; }
}

@media (max-width: 640px) {
  .artists .artists__visual { width: min(100%, 360px); }
  .artists__network-svg { width: 100%; }
}

/* For Artists map refinement: the supplied SVG now fills the visual column with a larger, clearer world composition. */
@media (min-width: 1024px) {
  .artists .artists__visual {
    min-height: 440px;
  }

  .artists__network-svg {
    width: calc(100% + 32px);
    max-width: 590px;
  }
}

@media (max-width: 1023px) {
  .artists .artists__visual {
    min-height: 0;
  }

  .artists__network-svg {
    width: 100%;
    max-width: 620px;
  }
}

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

  .hiring__ctas .btn {
    min-height: 44px;
  }
}

@media (max-width: 420px) {
  .hiring__ctas .btn {
    width: 100%;
  }
}

/* Targeted responsive polish: keep the brand glyph aligned without changing the CTA treatment. */
.btn--whatsapp .whatsapp-icon {
  display: block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin: 0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* The About story becomes a centered reading block only once its columns stack. */
@media (max-width: 1023px) {
  .about .about__inner {
    justify-items: center;
    text-align: center;
  }

  .about .about__content {
    display: flex;
    align-items: center;
    justify-self: center;
    width: min(540px, calc(100vw - 48px));
    margin-inline: auto;
    text-align: center;
  }

  .about .about__content > * {
    margin-inline: auto;
  }

  .about .stats {
    justify-content: center;
  }

  .about .stat {
    align-items: center;
    text-align: center;
  }

  .about .ecosystem-orbit {
    justify-self: center;
    margin-inline: auto;
  }
}

/* Keep all eight artist badges in a deliberate orbit around the mobile collage. */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero__visual {
    overflow: visible;
  }

  .hero__visual .cat-badge {
    z-index: 30;
  }

  .hero__visual .cat-badge--musicians { top: 58px; left: 4px; }
  .hero__visual .cat-badge--singers { top: 0; left: 47%; }
  .hero__visual .cat-badge--hosts { top: 48px; right: 0; left: auto; }
  .hero__visual .cat-badge--magicians { top: 0; right: auto; bottom: auto; left: 58%; }
  .hero__visual .cat-badge--comedians { top: 250px; right: auto; bottom: auto; left: -134px; }
  .hero__visual .cat-badge--djs { top: 110px; right: 0; bottom: auto; left: auto; }
  .hero__visual .cat-badge--dancers { top: 415px; right: auto; bottom: auto; left: 20px; }
  .hero__visual .cat-badge--makeup { top: 400px; right: 0; bottom: auto; left: auto; }
}

@media (max-width: 767px) {
  .about .about__content {
    justify-self: start;
    margin-left: 0;
    margin-right: auto;
  }

  .hero__visual {
    min-height: 420px;
    overflow: visible;
  }

  .hero__visual .cat-badge {
    z-index: 30;
  }

  .hero__visual .cat-badge--musicians { top: 118px; left: 0; }
  .hero__visual .cat-badge--singers { top: 76px; left: 50%; }
  .hero__visual .cat-badge--hosts { top: 136px; right: 0; left: auto; }
  .hero__visual .cat-badge--magicians { top: 330px; right: auto; bottom: auto; left: 0; }
  .hero__visual .cat-badge--makeup { top: 344px; right: 0; bottom: auto; left: auto; }
  .hero__visual .cat-badge--comedians { top: 356px; right: auto; bottom: auto; left: 6%; }
  .hero__visual .cat-badge--djs { top: 370px; right: 8%; bottom: auto; left: auto; }
  .hero__visual .cat-badge--dancers { top: 374px; right: auto; bottom: auto; left: 50%; }
}

/* Mobile-only composition refinements. Desktop artwork and its coordinates remain unchanged. */
@media (max-width: 639px) {
  /* Bring the image group naturally below the stacked actions and preserve editorial breathing room. */
  .hero__inner {
    row-gap: 28px;
  }

  .hero__visual {
    min-height: 318px;
    align-items: flex-start;
  }

  /* The supporting cards retain a deliberate overlap while revealing more of each artist. */
  .photo-collage {
    margin-top: 0;
    transform: rotate(6deg) scale(.9);
  }

  .photo-card--guitarist { left: -14px; }
  .photo-card--dj { right: -14px; }

  /* On phones, keep badges tied to the three visible cards rather than leaving orphaned labels below them. */
  .hero__visual .cat-badge--makeup,
  .hero__visual .cat-badge--magicians {
    display: none !important;
  }

  .hero__visual .cat-badge--singers { top: 20px; left: 50%; }
  .hero__visual .cat-badge--musicians { top: 44px; left: 0; }
  .hero__visual .cat-badge--hosts { top: 75px; right: 0; left: auto; }
  .hero__visual .cat-badge--djs { top: 238px; right: 8px; bottom: auto; left: auto; }
  .hero__visual .cat-badge--comedians { top: 238px; left: 45px; bottom: auto; left: auto; }
  .hero__visual .cat-badge--dancers { top: 220px; left: 10px; bottom: auto }

  /* A square, single-ring orbit keeps the About ecosystem legible on compact screens. */
  .about .ecosystem-orbit {
    width: min(92vw, 420px);
    min-height: 0;
    aspect-ratio: 1 / 1;
    height: auto;
    margin-inline: auto;
    justify-self: center;
    transform-origin: center;
  }

  .about .ecosystem-orbit__ring--outer {
    width: 74%;
    height: 74%;
  }

  .about .ecosystem-orbit__ring--inner,
  .about .ecosystem-orbit__point {
    display: none;
  }

  .about .ecosystem-hub {
    width: 38%;
  }

  .about .orbit-node {
    gap: 3px;
    font-size: clamp(.45rem, 1.8vw, .58rem);
  }

  .about .orbit-node__icon {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .about .orbit-node svg {
    width: 14px;
    height: 14px;
  }

  /* Eight nodes follow the circumference of the sole outer orbit. */
  .about .orbit-node--musicians { top: 11%; left: 50%; }
  .about .orbit-node--singers { top: 23%; left: 19%; }
  .about .orbit-node--comedians { top: 23%; left: 82%; }
  .about .orbit-node--djs { top: 50%; left: 8%; }
  .about .orbit-node--hosts { top: 50%; left: 90%; }
  .about .orbit-node--magicians { top: 78%; left: 20%; }
  .about .orbit-node--makeup { top: 78%; left: 82%; }
  .about .orbit-node--dancers { top: 88%; left: 50%; }
}

/* Large-desktop only: keep the hiring copy and its five-card showcase as one centered composition. */
@media (min-width: 1440px) {
  .hiring__main {
    width: 100%;
    max-width: var(--container-w);
    margin-inline: auto;
    grid-template-columns: 400px max-content;
    column-gap: 40px;
    justify-content: space-between;
  }

  .hiring__main .event-showcase {
    width: max-content;
    justify-self: end;
  }
}

/* Tablet-only alignment and composition corrections. */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Match the same shared container/gutters used by the neighboring sections. */
  .artists .artists__inner {
    width: 100%;
    max-width: var(--container-w);
    margin-inline: auto;
    padding-inline: var(--sp-6);
  }

  .artists .artists__content,
  .artists .artists__features {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding-inline: 0;
  }

  /* Four readable Contact benefits, without text escaping their glass pills. */
  .notify__badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 10px;
    width: 100%;
  }

  .notify-badge {
    min-height: 44px;
    padding: 8px 10px;
    gap: 6px;
    white-space: normal;
  }

  .notify-badge span {
    min-width: 0;
    overflow-wrap: anywhere;
    white-space: normal;
    line-height: 1.2;
  }

  /* Rebalance the five-image collage so frames only meet at their edges. */
  .hero__visual {
    overflow: visible;
  }

  .photo-collage {
    width: min(100%, 340px);
    height: 390px;
    transform: rotate(6deg) scale(.92);
  }

  .photo-card--singer {
    position: absolute;
    top: 50px;
    left: calc(50% - 85px);
    width: 170px;
    height: 260px;
  }

  .photo-card--guitarist,
  .photo-card--dj {
    top: 65px;
    width: 102px;
    height: 142px;
  }

  .photo-card--guitarist { left: -22px; }
  .photo-card--dj { right: -24px; }

  .photo-card--comedian,
  .photo-card--makeup {
    top: 220px;
    bottom: auto;
    width: 102px;
    height: 130px;
  }

  .photo-card--comedian { left: -24px; }
  .photo-card--makeup { right: -24px; }

  /* Eight labels balance in two rows (3 upper, 3 lower) with 2 more resting on the sides of the collage. */
  .hero__visual .cat-badge { z-index: 30; }
  .hero__visual .cat-badge--musicians { top: 80px; left: -8px; right: auto; }
  .hero__visual .cat-badge--singers {  top: 100px; left: 75%; right: auto; bottom: auto;} 
  .hero__visual .cat-badge--magicians { top: 68px; left: 38%; right: auto; }
  .hero__visual .cat-badge--djs { top: 220px; left: -28px; right: auto; bottom: auto; }
  .hero__visual .cat-badge--hosts { top: 260px; right: -24px; left: auto; }
  .hero__visual .cat-badge--comedians { top: 360px; left: -38px; right: auto; bottom: auto; }
  .hero__visual .cat-badge--dancers { top: 335px; left: 34%; right: auto; bottom: auto; }
  .hero__visual .cat-badge--makeup { top: 385px; right: -16px; left: auto; bottom: auto; }
}

@media (max-width: 820px){
  .hero__visual .cat-badge { z-index: 30; }
  .hero__visual .cat-badge--musicians { top: 40px; left: -8px; right: auto; }
  .hero__visual .cat-badge--singers {  top: 68px; left: 80%; right: auto; bottom: auto;} 
  .hero__visual .cat-badge--magicians { top: 40px; left: 38%; right: auto; }
  .hero__visual .cat-badge--djs { top: 180px; left: -28px; right: auto; bottom: auto; }
  .hero__visual .cat-badge--hosts { top: 210px; right: -24px; left: auto; }
  .hero__visual .cat-badge--comedians { top: 310px; left: -28px; right: auto; bottom: auto; }
  .hero__visual .cat-badge--dancers { top: 285px; left: 34%; right: auto; bottom: auto; }
  .hero__visual .cat-badge--makeup { top: 330px; right: -35px; left: auto; bottom: auto; }
}

/* Mobile-only: preserve the orbit geometry while centering the full visual and its anchor targets. */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 64px;
  }

  main > section[id] {
    scroll-margin-top: 0;
  }

  .about .ecosystem-orbit {
    width: min(92vw, 420px, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    justify-self: center;
    margin-inline: auto;
  }
}

/* Final visual atmosphere: retain the dark base while giving the established accents more presence. */
body {
  background:
    radial-gradient(ellipse 54% 30% at 10% 7%, rgba(245, 129, 31, .055), transparent 72%),
    radial-gradient(ellipse 52% 36% at 90% 18%, rgba(139, 92, 246, .06), transparent 74%),
    radial-gradient(ellipse 48% 28% at 72% 73%, rgba(74, 159, 255, .035), transparent 75%),
    var(--color-bg);
}

.hero__visual::before,
.artists .artists__visual::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.hero__visual::before {
  width: 330px;
  height: 330px;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-46%, -49%);
  background:
    radial-gradient(circle at 32% 34%, rgba(245, 129, 31, .13), transparent 42%),
    radial-gradient(circle at 70% 48%, rgba(139, 92, 246, .13), transparent 67%);
  filter: blur(18px);
}

.hero__visual .photo-collage { z-index: 1; }

.about .ecosystem-orbit::before {
  content: "";
  position: absolute;
  inset: 10%;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 42% 45%, rgba(74, 159, 255, .085), transparent 48%),
    radial-gradient(circle at 68% 48%, rgba(236, 72, 153, .055), transparent 64%);
  filter: blur(15px);
}

.about::before {
  background:
    radial-gradient(circle, rgba(139, 92, 246, .13), transparent 66%),
    radial-gradient(circle at 25% 60%, rgba(74, 159, 255, .05), transparent 55%);
}

/* ---------- Targeted official brand + About tagline integration ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
}

.logo .brand-mark {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 24px;
}

.site-footer__brand .brand-mark {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-body);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.brand-name__my { color: #7c5ac7; }

.brand-name__artist {
  color: #e46c66;
  background: linear-gradient(90deg, #d95783, #ed784d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-name__domain { color: #e89a68; }

.site-footer__brand .brand-name { font-size: .875rem; }

.navbar { background: rgba(12, 8, 27, .94); }
.navbar.is-scrolled { background: rgba(12, 8, 27, .97); }

.about .about__tagline {
  margin: 14px 0 9px;
  font-family: "Noto Sans Devanagari", "Nirmala UI", Mangal, sans-serif;
  font-size: clamp(.84rem, 1.1vw, 1rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .015em;
  color: #ec4899;
  background: linear-gradient(90deg, #a78bfa 0%, #ec4899 52%, #f5811f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.about .about__tagline + .about__heading {
  margin-top: 0;
}

@media (max-width: 640px) {
  .logo { height: 28px; }
  .logo .brand-mark { width: 24px; height: 24px; }
  .logo .brand-name { font-size: 1.08rem; }
  .about .about__tagline { margin-top: 12px; margin-bottom: 8px; }
}

.hiring::before {
  background:
    radial-gradient(ellipse, rgba(46, 204, 154, .095), transparent 67%),
    radial-gradient(circle at 76% 42%, rgba(74, 159, 255, .055), transparent 52%);
}

.artists .artists__visual::before {
  width: min(82%, 440px);
  aspect-ratio: 1 / 1;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(70, 156, 214, .075), rgba(139, 92, 246, .045) 42%, transparent 70%);
  filter: blur(20px);
}

.artists .artists__network-svg { position: relative; z-index: 1; }

.notify::before {
  background:
    radial-gradient(circle, rgba(139, 92, 246, .17), transparent 68%),
    radial-gradient(circle at 65% 45%, rgba(236, 72, 153, .055), transparent 52%);
}

/* Phone-only: all five cards form one compact editorial cluster; none are hidden. */
@media (max-width: 639px) {
  .hero__visual {
    min-height: 342px;
  }

  .photo-collage {
    width: min(100%, 322px);
    height: 292px;
    transform: rotate(6deg) scale(.88);
  }

  .photo-card--singer {
    top: 50px;
    left: calc(50% - 57px);
    width: 114px;
    height: 174px;
  }

  .photo-card--guitarist{
    display: block;
    top: 50px;
    width: 86px;
    height: 120px;
  }
  .photo-card--dj {
    display: block;
    top: -1px;
    width: 86px;
    height: 120px;
  }

  .photo-card--guitarist { left: 14px; }
  .photo-card--dj { right: 14px; }

  .photo-card--comedian{
    display: block !important;
    top: 175px;
    bottom: auto;
    width: 82px;
    height: 98px;
  }
  .photo-card--makeup {
    display: block !important;
    top: 125px;
    bottom: auto;
    width: 82px;
    height: 98px;
  }

  .photo-card--comedian { left: 14px; }
  .photo-card--makeup { right: 14px; }

  .hero__visual .cat-badge {
    display: inline-flex !important;
    z-index: 30;
  }

  .hero__visual .cat-badge--singers {  top: 43px; left: 40px;} 
  .hero__visual .cat-badge--musicians { top: 18px; right: 15px; left: auto;}
  .hero__visual .cat-badge--hosts { top: 125px; right: 22px; bottom: auto; left: auto; }
  .hero__visual .cat-badge--magicians {top: 50px; left: calc(50% - 37px); } 
  .hero__visual .cat-badge--djs { top: 242px; right: auto; bottom: auto; left: 0;} 
  .hero__visual .cat-badge--comedians { top: 150px; right: auto; bottom: auto; left: -5px; }
  .hero__visual .cat-badge--makeup { top: 210px; right: 0; bottom: auto; left: auto; }
  .hero__visual .cat-badge--dancers { top: 220px; right: auto; bottom: auto; left: 120px; }
}


