:root {
  color-scheme: light;
  --canvas: #f6f7fb;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.95);
  --ink: #0d1324;
  --muted: #66738a;
  --line: rgba(15, 23, 42, 0.09);
  --signal: #f4cb45;
  --electric: #35d8ff;
  --ember: #ff6a3d;
  --navy: #10182f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.95), rgba(246, 247, 251, 0.88) 38%, rgba(243, 246, 251, 0.96) 100%),
    var(--canvas);
}

a {
  text-decoration: none;
}

img,
video {
  display: block;
}

.section-shell {
  margin-inline: auto;
  max-width: 1260px;
  padding-inline: clamp(1.25rem, 2.8vw, 2rem);
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.65;
}

.ambient-one {
  right: -12rem;
  top: -8rem;
  height: 24rem;
  width: 24rem;
  background: radial-gradient(circle, rgba(244, 203, 69, 0.35), rgba(244, 203, 69, 0));
}

.ambient-two {
  left: -10rem;
  top: 32rem;
  height: 20rem;
  width: 20rem;
  background: radial-gradient(circle, rgba(53, 216, 255, 0.26), rgba(53, 216, 255, 0));
}

.ambient-three {
  bottom: 8rem;
  right: 16%;
  height: 18rem;
  width: 18rem;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.18), rgba(255, 106, 61, 0));
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.88)),
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: auto, 100% 84px, 84px 100%;
}

.glass-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68));
  box-shadow:
    0 24px 70px rgba(9, 16, 37, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.depth-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.depth-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(53, 216, 255, 0.14), transparent 42%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.depth-card:hover {
  box-shadow:
    0 28px 90px rgba(9, 16, 37, 0.11),
    0 0 0 1px rgba(53, 216, 255, 0.08);
}

.depth-card:hover::after {
  opacity: 1;
}

.nav-shell {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

[data-nav].is-scrolled .nav-shell {
  transform: translateY(-0.15rem);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(9, 16, 37, 0.1);
}

.nav-link,
.footer-link,
.contact-link {
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active,
.footer-link:hover,
.contact-link:hover {
  color: var(--ink);
}

.nav-link.is-active {
  position: relative;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  background: linear-gradient(90deg, var(--signal), var(--electric));
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  padding: 0.92rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--signal), #ffd86f 50%, var(--electric));
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(244, 203, 69, 0.28);
}

.button-secondary {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.button-primary:hover,
.button-secondary:hover,
.play-button:hover,
.play-chip:hover {
  transform: translateY(-2px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow-dot {
  height: 0.65rem;
  width: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--signal), var(--electric));
  box-shadow: 0 0 0 0.35rem rgba(53, 216, 255, 0.12);
}

.gradient-text {
  background-image: linear-gradient(120deg, #171b27 0%, #26324f 20%, var(--signal) 42%, var(--electric) 72%, #141923 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight-pill,
.tag-chip,
.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.84);
  padding: 0.72rem 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.stat-card {
  min-height: 11.5rem;
  border-radius: 1.6rem;
  padding: 1.4rem;
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.stat-label {
  margin-top: 0.9rem;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero-stage {
  position: relative;
  min-height: 46rem;
}

.hero-3d-shell {
  position: absolute;
  inset: 1rem 1rem 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 2.5rem;
  background:
    radial-gradient(circle at 20% 18%, rgba(244, 203, 69, 0.2), transparent 34%),
    radial-gradient(circle at 76% 28%, rgba(53, 216, 255, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-3d-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 5rem, 5rem 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
  opacity: 0.4;
}

.hero-3d-canvas {
  height: 100%;
  width: 100%;
}

.hero-orbit {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-orbit-one {
  left: 5%;
  top: 12%;
  height: 15rem;
  width: 15rem;
  animation: spinOrbit 16s linear infinite;
}

.hero-orbit-two {
  right: 9%;
  top: 26%;
  height: 11rem;
  width: 11rem;
  animation: spinOrbitReverse 12s linear infinite;
}

.hero-orbit-three {
  bottom: 12%;
  left: 22%;
  height: 20rem;
  width: 20rem;
  animation: spinOrbit 22s linear infinite;
}

.hero-card {
  position: absolute;
  z-index: 2;
  border-radius: 2rem;
}

.hero-card-primary {
  left: 0;
  top: 2.5rem;
  width: min(100%, 35rem);
}

.hero-card-secondary {
  right: 0;
  top: 0;
  width: 15.5rem;
}

.hero-card-tertiary {
  bottom: 5rem;
  right: 1rem;
  width: 17rem;
}

.hero-profile {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 1rem;
  width: 18.5rem;
  border-radius: 1.7rem;
  padding: 1.15rem 1.2rem;
}

.hero-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  animation: float 6s ease-in-out infinite;
}

.hero-chip-one {
  left: 0;
  top: 0.6rem;
}

.hero-chip-two {
  right: 3.2rem;
  top: 13.5rem;
  animation-delay: -2s;
}

.hero-chip-three {
  left: 7rem;
  bottom: 12rem;
  animation-delay: -4s;
}

.media-frame {
  overflow: hidden;
  border-radius: 1.75rem;
}

.media-frame.small {
  aspect-ratio: 0.92;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.media-frame.square {
  aspect-ratio: 1;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.hero-card-primary .media-frame {
  aspect-ratio: 0.88;
}

.hero-card-copy {
  position: absolute;
  inset-inline: 1.35rem;
  bottom: 1.35rem;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(10, 17, 34, 0.14), rgba(10, 17, 34, 0.82));
  padding: 1.15rem;
  backdrop-filter: blur(14px);
}

.hero-card-kicker,
.section-kicker,
.statement-label,
.case-label,
.contact-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7b8498;
}

.play-button,
.play-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  padding: 0.82rem 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: white;
  backdrop-filter: blur(12px);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.play-chip {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(13, 19, 36, 0.82);
}

.section-heading {
  max-width: 42rem;
}

.section-title {
  margin-top: 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-copy {
  margin-top: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--muted);
}

.feature-card {
  min-height: 17rem;
  border-radius: 1.75rem;
  padding: 1.55rem;
}

.feature-icon {
  display: inline-flex;
  height: 3.2rem;
  width: 3.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(244, 203, 69, 0.18), rgba(53, 216, 255, 0.18));
  color: var(--ink);
}

.feature-icon svg {
  height: 1.4rem;
  width: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-title {
  margin-top: 1.4rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.feature-copy {
  margin-top: 0.8rem;
  line-height: 1.75;
  color: var(--muted);
}

.edge-point,
.statement-card,
.contact-card,
.form-card {
  border-radius: 1.75rem;
  padding: 1.55rem;
}

.edge-point h3,
.statement-card h3 {
  margin: 0.55rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
}

.edge-point p,
.statement-card p {
  margin-top: 0.65rem;
  line-height: 1.75;
  color: var(--muted);
}

.ecosystem-board {
  border-radius: 2.2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.flow-track {
  position: relative;
  display: grid;
  gap: 1rem;
}

.flow-node {
  position: relative;
  z-index: 1;
  min-height: 13.8rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.86);
  padding: 1.45rem;
}

.flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244, 203, 69, 0.2), rgba(53, 216, 255, 0.2));
  padding: 0.4rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--ink);
}

.flow-node h3 {
  margin-top: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--ink);
}

.flow-node p {
  margin-top: 0.7rem;
  line-height: 1.72;
  color: var(--muted);
}

.flow-core {
  position: relative;
  margin-top: 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(244, 203, 69, 0.08), rgba(53, 216, 255, 0.12));
  padding: 1.2rem;
}

.flow-core-card {
  position: relative;
  z-index: 2;
  border-radius: 1.65rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 2rem 1.6rem;
  text-align: center;
}

.flow-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  height: 18rem;
  width: 18rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(53, 216, 255, 0.24);
  animation: pulse 3.1s ease-out infinite;
}

.flow-pulse-delay {
  animation-delay: 1.15s;
}

.featured-case {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 2.2rem;
}

.featured-media {
  position: relative;
  min-height: 26rem;
}

.featured-copy {
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

.case-metric {
  border-radius: 1.4rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
}

.case-metric span {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}

.case-metric p {
  margin-top: 0.35rem;
  color: var(--muted);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.65;
}

.check-item::before {
  content: "";
  margin-top: 0.2rem;
  height: 0.75rem;
  width: 0.75rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--signal), var(--electric));
}

.result-line {
  margin-top: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}

.statement-card {
  min-height: 100%;
}

.service-card {
  min-height: 16.8rem;
  border-radius: 1.7rem;
  padding: 1.45rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 203, 69, 0.08), rgba(53, 216, 255, 0.08), rgba(255, 106, 61, 0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(53, 216, 255, 0.28);
  box-shadow: 0 30px 80px rgba(9, 16, 37, 0.12);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.42rem 0.68rem;
  background: rgba(13, 19, 36, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.service-card h3 {
  margin-top: 1.1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
}

.service-card p {
  margin-top: 0.8rem;
  line-height: 1.75;
  color: var(--muted);
}

.artist-showcase-shell {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.artist-showcase-panel {
  border-radius: 2rem;
  padding: 1.2rem;
}

.artist-spotlight-grid {
  display: grid;
  gap: 0.9rem;
}

.artist-spotlight-card {
  position: relative;
  overflow: hidden;
  min-height: 10rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(244, 203, 69, 0.14), rgba(53, 216, 255, 0.12));
}

.artist-spotlight-card::after,
.artist-photo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 19, 36, 0.02), rgba(13, 19, 36, 0.66));
  pointer-events: none;
}

.artist-spotlight-card-large {
  min-height: 17rem;
}

.artist-spotlight-card-wide {
  min-height: 11.5rem;
}

.artist-spotlight-label {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: white;
}

.artist-spotlight-label p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.artist-spotlight-label h3 {
  margin: 0.55rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.artist-spotlight-label.compact h3 {
  font-size: 1rem;
}

.artist-summary-metrics {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.artist-summary-metric {
  border-radius: 1.4rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.76);
  padding: 1rem;
}

.artist-summary-metric span {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.artist-summary-metric p {
  margin-top: 0.35rem;
  line-height: 1.6;
  color: var(--muted);
}

.artist-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1.8rem;
  padding: 1rem;
}

.artist-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.artist-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.72rem 0.95rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--ink);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.artist-filter strong {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
}

.artist-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(53, 216, 255, 0.24);
}

.artist-filter.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(244, 203, 69, 0.86), rgba(53, 216, 255, 0.86));
  box-shadow: 0 18px 40px rgba(53, 216, 255, 0.18);
}

.artist-filter.is-active strong {
  color: rgba(13, 19, 36, 0.72);
}

.artist-search {
  display: flex;
  min-width: min(100%, 20rem);
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.2rem 0.95rem 0.2rem 0.8rem;
}

.artist-search svg {
  height: 1rem;
  width: 1rem;
  fill: #7b8498;
  flex: 0 0 auto;
}

.artist-search input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.7rem 0;
  color: var(--ink);
}

.artist-search input:focus {
  outline: none;
}

.artist-results {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.artist-results-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--muted);
}

.artist-results-copy span:first-child {
  font-weight: 800;
  color: var(--ink);
}

.artist-results-divider {
  display: inline-flex;
  height: 0.38rem;
  width: 0.38rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--signal), var(--electric));
}

.artist-toggle {
  min-width: 13rem;
}

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

.artist-card {
  border-radius: 1.65rem;
  padding: 0.9rem;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.artist-card:hover {
  transform: translateY(-0.45rem);
  border-color: rgba(53, 216, 255, 0.22);
  box-shadow: 0 28px 75px rgba(9, 16, 37, 0.12);
}

.artist-photo-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.86;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(16, 24, 47, 0.92), rgba(33, 52, 84, 0.94) 55%, rgba(53, 216, 255, 0.78));
}

.artist-photo-shell img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.artist-role-pill {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.45rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  backdrop-filter: blur(12px);
}

.artist-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-fallback::before,
.artist-fallback::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.artist-fallback::before {
  height: 62%;
  width: 62%;
}

.artist-fallback::after {
  height: 86%;
  width: 86%;
}

.artist-fallback span {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: white;
}

.artist-card-body {
  padding: 1rem 0.25rem 0.3rem;
}

.artist-card-body h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.artist-card-body p {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.artist-empty {
  grid-column: 1 / -1;
  border-radius: 1.7rem;
  padding: 1.6rem;
  text-align: center;
}

.artist-empty h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.artist-empty p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.video-gallery-shell {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.video-gallery-copy {
  max-width: 42rem;
}

.video-gallery-metrics {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.85rem;
}

.video-gallery-metric {
  border-radius: 1.5rem;
  padding: 1rem 1.1rem;
}

.video-gallery-metric span {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
}

.video-gallery-metric p {
  margin-top: 0.45rem;
  line-height: 1.7;
  color: var(--muted);
}

.video-gallery-side {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 1.4rem;
  min-height: 100%;
}

.video-gallery-side-copy {
  position: relative;
  z-index: 2;
  max-width: 24rem;
}

.video-gallery-side-copy h3 {
  margin: 0.75rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  color: var(--ink);
}

.video-gallery-side-copy p:last-child {
  margin-top: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}

.video-gallery-side-glow {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  height: 12rem;
  width: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53, 216, 255, 0.36), rgba(53, 216, 255, 0));
  filter: blur(18px);
}

.video-gallery-carousel {
  overflow: hidden;
}

.reel-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(15rem, 1fr));
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.reel-strip::-webkit-scrollbar {
  display: none;
}

.reel-card {
  min-width: 0;
  border-radius: 1.8rem;
  padding: 0.8rem;
  scroll-snap-align: start;
}

.reel-play-hit {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.reel-video-shell {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(8, 13, 28, 0.92), rgba(17, 28, 54, 0.98));
}

.reel-preview {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.reel-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 16, 37, 0.02), rgba(9, 16, 37, 0.16) 45%, rgba(9, 16, 37, 0.76));
  pointer-events: none;
}

.reel-badge {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.45rem 0.72rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  backdrop-filter: blur(12px);
}

.reel-card-overlay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1rem 0.2rem 0.2rem;
}

.reel-card-overlay strong,
.reel-viewer-copy h4 {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.reel-card-overlay small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--muted);
}

.reel-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(13, 19, 36, 0.06);
  padding: 0.68rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  color: var(--ink);
}

.reel-viewer {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.reel-viewer[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.reel-viewer-backdrop {
  border: 0;
  background: rgba(4, 8, 18, 0.82);
  backdrop-filter: blur(18px);
}

.reel-viewer-shell {
  z-index: 2;
  width: min(100%, 72rem);
  display: grid;
  gap: 1rem;
  transform: translateY(1rem) scale(0.98);
  transition: transform 0.3s ease;
}

.reel-viewer[aria-hidden="false"] .reel-viewer-shell {
  transform: translateY(0) scale(1);
}

.reel-viewer-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 17, 32, 0.78);
  padding: 1rem 1.1rem;
  backdrop-filter: blur(18px);
}

.reel-viewer-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.reel-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: white;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.reel-nav-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

.reel-close-button {
  min-width: 2.9rem;
  padding-inline: 0.85rem;
}

.reel-viewer-feed {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(18rem, 28rem);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reel-viewer-feed::-webkit-scrollbar {
  display: none;
}

.reel-viewer-item {
  scroll-snap-align: center;
}

.reel-viewer-video-shell {
  overflow: hidden;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(9, 13, 25, 0.98), rgba(6, 10, 18, 1));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reel-viewer-video {
  aspect-ratio: 9 / 16;
  width: 100%;
  background: black;
  object-fit: cover;
}

.reel-viewer-copy {
  margin-top: 0.8rem;
  border-radius: 1.5rem;
  background: rgba(11, 17, 32, 0.7);
  padding: 1rem 1rem 1.05rem;
  backdrop-filter: blur(18px);
}

.reel-viewer-copy p {
  margin-top: 0.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.case-card {
  overflow: hidden;
  border-radius: 1.9rem;
}

.case-card-large {
  display: grid;
}

.case-image-wrap {
  min-height: 18rem;
}

.case-image-wrap.compact {
  min-height: 14rem;
}

.case-body {
  padding: 1.35rem;
}

.case-body h3 {
  margin-top: 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
}

.case-body p {
  margin-top: 0.7rem;
  line-height: 1.72;
  color: var(--muted);
}

.case-inline-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.case-inline-pills span {
  border-radius: 999px;
  background: rgba(13, 19, 36, 0.06);
  padding: 0.58rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.placeholder-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1.35rem 1.35rem 0;
}

.placeholder-grid span {
  display: block;
  aspect-ratio: 1;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(244, 203, 69, 0.15), rgba(53, 216, 255, 0.12));
}

.marquee {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  min-width: max-content;
  gap: 1rem;
  animation: marquee 24s linear infinite;
}

.cta-panel {
  border-radius: 2.2rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
}

.contact-value {
  margin-top: 0.3rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.map-card {
  position: relative;
  min-height: 22rem;
  border-radius: 1.8rem;
  overflow: hidden;
  padding: 1.55rem;
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 100% 3.9rem, 3.9rem 100%;
  opacity: 0.7;
}

.map-glow {
  position: absolute;
  right: 1.8rem;
  top: 1.6rem;
  height: 11rem;
  width: 11rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53, 216, 255, 0.35), rgba(53, 216, 255, 0));
  filter: blur(18px);
}

.map-marker {
  position: absolute;
  right: 18%;
  top: 32%;
  z-index: 2;
  height: 1.3rem;
  width: 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--signal), var(--ember));
  box-shadow: 0 0 0 0.8rem rgba(244, 203, 69, 0.12);
}

.map-copy {
  position: relative;
  z-index: 2;
}

.form-card {
  border-radius: 1.8rem;
  padding: clamp(1.45rem, 3.5vw, 2rem);
}

.form-field {
  display: grid;
  gap: 0.7rem;
}

.form-field span {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  padding: 1rem 1rem;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(53, 216, 255, 0.56);
  box-shadow: 0 0 0 0.25rem rgba(53, 216, 255, 0.12);
  outline: none;
}

.modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  background: rgba(6, 10, 20, 0.76);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 2;
  transform: translateY(1rem) scale(0.98);
  transition: transform 0.3s ease;
}

.modal[aria-hidden="false"] .modal-panel {
  transform: translateY(0) scale(1);
}

.toast {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 70;
  max-width: 20rem;
  border-radius: 1.2rem;
  padding: 1rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
}

.reveal-ready [data-reveal] {
  transform: translateY(1.6rem);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -0.38rem;
}

.menu-icon::after {
  top: 0.38rem;
}

[data-menu-button][aria-expanded="true"] .menu-icon {
  background: transparent;
}

[data-menu-button][aria-expanded="true"] .menu-icon::before {
  transform: translateY(0.38rem) rotate(45deg);
}

[data-menu-button][aria-expanded="true"] .menu-icon::after {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.mobile-link {
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  transition: background-color 0.2s ease;
}

.mobile-link:hover {
  background: rgba(13, 19, 36, 0.05);
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }
  30% {
    opacity: 0.42;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

@keyframes spinOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinOrbitReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@media (min-width: 860px) {
  .video-gallery-shell {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .video-gallery-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .artist-showcase-shell {
    grid-template-columns: 0.95fr 1.05fr;
  }

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

  .artist-spotlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .artist-spotlight-card-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 22rem;
  }

  .artist-spotlight-card-wide {
    grid-column: span 2;
  }

  .artist-summary-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-track::before {
    content: "";
    position: absolute;
    left: 9%;
    right: 9%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, rgba(244, 203, 69, 0), rgba(244, 203, 69, 0.8), rgba(53, 216, 255, 0.85), rgba(53, 216, 255, 0));
  }

  .featured-case {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .case-card-large {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (min-width: 1180px) {
  .artist-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-stage {
    min-height: 52rem;
  }

  .hero-3d-shell {
    inset: 1.5rem 0.4rem 7rem;
  }

  .hero-card-primary {
    width: calc(100% - 1.5rem);
  }

  .hero-card-secondary {
    top: 24rem;
    width: 13.8rem;
  }

  .hero-chip-two {
    top: 18rem;
    right: 1rem;
  }

  .hero-chip-three {
    left: 1rem;
    bottom: 10rem;
  }

  .reel-strip {
    grid-template-columns: repeat(4, minmax(14.2rem, 1fr));
  }
}

@media (max-width: 767px) {
  .artist-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .artist-toolbar,
  .artist-results {
    align-items: stretch;
  }

  .artist-search,
  .artist-toggle {
    width: 100%;
  }

  .hero-stage {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-3d-shell {
    inset: 0 0 1rem;
    height: 19rem;
  }

  .hero-card,
  .hero-profile,
  .hero-chip {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 1rem;
    width: 100%;
    animation: none;
  }

  .hero-card-primary,
  .hero-card-secondary,
  .hero-card-tertiary,
  .hero-profile {
    width: 100%;
  }

  .hero-card-copy {
    inset-inline: 1rem;
    bottom: 1rem;
  }

  .stat-card,
  .feature-card,
  .service-card,
  .artist-card {
    min-height: auto;
  }

  .video-gallery-side {
    min-height: 14rem;
  }

  .reel-strip {
    grid-template-columns: repeat(4, minmax(15.8rem, 82vw));
  }

  .reel-card-overlay {
    flex-direction: column;
    align-items: flex-start;
  }

  .reel-viewer {
    padding: 0.85rem;
  }

  .reel-viewer-shell {
    width: 100%;
  }

  .reel-viewer-feed {
    grid-auto-columns: 86vw;
  }

  .reel-nav-button {
    min-height: 2.7rem;
    padding: 0.72rem 0.9rem;
  }

  .map-card {
    min-height: 18rem;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
