:root {
  --black: #050505;
  --ink: #111111;
  --charcoal: #181818;
  --white: #fbfaf6;
  --paper: #f4f1ea;
  --line: rgba(17, 17, 17, 0.14);
  --muted: #6d6a63;
  --champagne: #bda56f;
  --cobalt: #245cff;
  --shadow: 0 24px 70px rgba(5, 5, 5, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.4) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.35) 0 1px, transparent 1px);
  background-size: 4px 4px, 5px 5px;
  mix-blend-mode: multiply;
}

.admin-page::before {
  display: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 56px);
  color: white;
  transition:
    background 240ms ease,
    color 240ms ease,
    border-color 240ms ease,
    padding 240ms ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  color: var(--ink);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

.site-header.is-scrolled .brand img {
  border-color: rgba(17, 17, 17, 0.16);
}

.brand span {
  max-width: 150px;
  line-height: 1.05;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  opacity: 0.86;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--cobalt);
  transition: width 220ms ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.desktop-nav .nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink);
  background: white;
  opacity: 1;
}

.desktop-nav .nav-cta::after {
  display: none;
}

.site-header.is-scrolled .desktop-nav .nav-cta {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 4px 0 0 var(--cobalt);
}

.inner-page .site-header {
  color: var(--ink);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(18px);
}

.inner-page .desktop-nav .nav-cta {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 4px 0 0 var(--cobalt);
}

.inner-page .brand img {
  border-color: rgba(17, 17, 17, 0.16);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: white;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  filter: saturate(0.78) contrast(1.08);
  animation: heroPulse 10s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.24) 52%, rgba(0, 0, 0, 0.56)),
    radial-gradient(circle at 70% 26%, rgba(36, 92, 255, 0.18), transparent 28%);
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0.22;
  animation: scan 5s linear infinite;
}

.hero-content {
  width: min(780px, calc(100% - 36px));
  padding: clamp(116px, 15vh, 148px) 0 100px;
  margin-left: clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--muted);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.55rem, 7.4vw, 6.55rem);
  font-weight: 500;
}

h2 {
  max-width: 920px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 6.6rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
}

.hero-content > p:not(.eyebrow) {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--ink);
  border-color: white;
  background: white;
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  width: max-content;
  color: white;
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 4px 0 0 var(--cobalt);
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-ticker span {
  animation: ticker 18s linear infinite;
}

.trusted {
  overflow: hidden;
  padding: clamp(46px, 7vw, 74px) 0;
  background: #ffffff;
}

.trusted-label {
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.logo-marquee {
  position: relative;
  border-block: 1px solid rgba(17, 17, 17, 0.1);
}

.logo-marquee::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 110px;
  height: 1px;
  content: "";
  background: var(--champagne);
  transform: translateX(-50%);
}

.logo-row {
  overflow: hidden;
}

.logo-row + .logo-row {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(18px, 2.4vw, 26px) 0;
  color: rgba(17, 17, 17, 0.56);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.16rem, 2.35vw, 2.15rem);
  font-style: italic;
  white-space: nowrap;
  animation: logos 30s linear infinite;
}

.logo-row.is-reverse .logo-track {
  color: rgba(17, 17, 17, 0.72);
  animation-direction: reverse;
  animation-duration: 34s;
}

.section-pad {
  padding: clamp(78px, 10vw, 138px) clamp(18px, 5vw, 72px);
}

.page-hero {
  display: grid;
  min-height: clamp(440px, 72svh, 720px);
  align-items: end;
  padding: clamp(130px, 16vw, 190px) clamp(18px, 5vw, 72px) clamp(54px, 8vw, 96px);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.08), transparent 34%),
    var(--paper);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(26px, 6vw, 84px);
  align-items: end;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(3rem, 7.8vw, 8.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.page-hero p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.about-hero {
  color: white;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.42)),
    radial-gradient(circle at 80% 18%, rgba(36, 92, 255, 0.42), transparent 24%),
    radial-gradient(circle at 18% 80%, rgba(189, 165, 111, 0.34), transparent 28%),
    url("assets/generated/about-hero-agency-culture.png") center / cover;
}

.about-hero h1 {
  color: white;
}

.about-hero .eyebrow,
.about-hero p {
  color: rgba(255, 255, 255, 0.74);
}

.services-hero {
  color: white;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.5)),
    radial-gradient(circle at 72% 24%, rgba(189, 165, 111, 0.42), transparent 23%),
    radial-gradient(circle at 18% 74%, rgba(36, 92, 255, 0.32), transparent 28%),
    url("assets/generated/services-hero-campaign-workflow.png") center / cover;
}

.services-hero h1 {
  color: white;
}

.services-hero .eyebrow,
.services-hero p {
  color: rgba(255, 255, 255, 0.76);
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: center;
  background: var(--white);
}

.about-story {
  background:
    linear-gradient(90deg, var(--white) 0 46%, #efe7d6 46% 100%);
}

.editorial-image {
  position: relative;
  min-height: clamp(320px, 44vw, 560px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-story .editorial-image::after {
  position: absolute;
  inset: auto 22px 22px auto;
  width: clamp(92px, 14vw, 170px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.72), transparent 0 10%, transparent 11%),
    rgba(36, 92, 255, 0.72);
  mix-blend-mode: screen;
}

.editorial-image img,
.editorial-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy h2,
.page-section h2 {
  max-width: 760px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(2rem, 4.6vw, 5.2rem);
  font-weight: 900;
  line-height: 0.96;
}

.editorial-copy p,
.page-section p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.page-section {
  background: var(--paper);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 17, 17, 0.12);
}

.metric {
  min-height: 190px;
  padding: clamp(24px, 4vw, 48px);
  background: var(--white);
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  font-weight: 900;
  line-height: 0.9;
}

.metric span {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-values {
  background:
    radial-gradient(circle at 86% 12%, rgba(36, 92, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #f4f1ea 0%, #ebe3d2 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(32px, 5vw, 64px);
  background: rgba(17, 17, 17, 0.12);
}

.value-card {
  min-height: 320px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
}

.value-card:nth-child(2) {
  background: #111111;
}

.value-card:nth-child(2) h3,
.value-card:nth-child(2) p {
  color: white;
}

.value-card:nth-child(3) {
  background:
    radial-gradient(circle at 92% 12%, rgba(36, 92, 255, 0.16), transparent 24%),
    #f7f4eb;
}

.value-card:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(189, 165, 111, 0.24), transparent 42%),
    #ffffff;
}

.value-card span {
  display: block;
  margin-bottom: clamp(44px, 5vw, 72px);
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.value-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.06;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 17, 17, 0.16);
}

.mission-panel {
  min-height: clamp(390px, 45vw, 560px);
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: clamp(58px, 8vw, 110px);
  padding: clamp(34px, 6vw, 72px);
  color: white;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.62)),
    radial-gradient(circle at 84% 16%, rgba(189, 165, 111, 0.38), transparent 24%),
    url("assets/generated/about-mission-strategy.png") center / cover;
}

.mission-panel.is-dark {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 20%, rgba(36, 92, 255, 0.13), transparent 28%),
    linear-gradient(135deg, #eee6d5 0%, #f8f4eb 100%);
}

.mission-panel h2 {
  max-width: 720px;
  margin: 0;
  align-self: start;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(2rem, 3.75vw, 4.45rem);
  font-weight: 900;
  line-height: 0.98;
}

.mission-panel.is-dark .eyebrow {
  color: var(--muted);
}

.mission-panel:not(.is-dark) .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.service-grid,
.influencer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(32px, 5vw, 64px);
  background: rgba(17, 17, 17, 0.12);
}

.services-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(36, 92, 255, 0.11), transparent 24%),
    linear-gradient(180deg, #f7f4eb 0%, #eee6d5 100%);
}

.services-section .service-grid {
  gap: clamp(14px, 2vw, 22px);
  background: transparent;
  perspective: 1200px;
}

.service-card,
.influencer-card {
  min-height: 280px;
  padding: clamp(24px, 3.4vw, 44px);
  background: var(--white);
}

.services-section .service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(36, 92, 255, 0.14), transparent 0 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.64));
  box-shadow: 0 18px 54px rgba(5, 5, 5, 0.08);
  transform:
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(var(--lift, 0));
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease,
    background 240ms ease;
}

.services-section .service-card::before {
  position: absolute;
  inset: auto auto 24px 24px;
  z-index: -1;
  width: clamp(72px, 8vw, 120px);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: rgba(189, 165, 111, 0.24);
  transform: scale(0.72);
  transition:
    transform 260ms ease,
    background 260ms ease;
}

.services-section .service-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.72));
  opacity: 0;
  transition: opacity 240ms ease;
}

.services-section .service-card:hover,
.services-section .service-card:focus-within {
  --lift: -8px;
  border-color: rgba(17, 17, 17, 0.28);
  box-shadow: 0 26px 72px rgba(5, 5, 5, 0.18);
}

.services-section .service-card:hover::before,
.services-section .service-card:focus-within::before {
  background: rgba(36, 92, 255, 0.34);
  transform: scale(1.15);
}

.services-section .service-card:hover::after,
.services-section .service-card:focus-within::after {
  opacity: 1;
}

.services-section .service-card:hover h3,
.services-section .service-card:hover p,
.services-section .service-card:focus-within h3,
.services-section .service-card:focus-within p {
  color: white;
}

.service-card span,
.influencer-card span {
  display: block;
  margin-bottom: 58px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card h3,
.influencer-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.service-card p,
.influencer-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.page-cta {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
  color: white;
  background: var(--black);
}

.page-cta h2 {
  margin-bottom: 0;
  color: white;
}

.page-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.talent-directory {
  background: var(--white);
}

.inner-page main > .talent-directory:first-child {
  padding-top: clamp(118px, 13vw, 154px);
}

.directory-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.directory-head-simple {
  display: flex;
  justify-content: flex-end;
}

.directory-head-simple .talent-search {
  width: min(420px, 100%);
}

.directory-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 0.96;
}

.directory-intro h1 {
  max-width: 520px;
  margin-bottom: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 850;
  line-height: 1;
}

.talent-search {
  gap: 12px;
}

.talent-search input {
  min-height: 52px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 0;
  padding: 0 16px;
  background: var(--paper);
}

.talent-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(18px, 2.6vw, 30px);
}

.talent-filters button {
  min-height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.talent-filters button.is-active,
.talent-filters button:hover {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(24px, 4vw, 46px);
}

.talent-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 31vw, 470px);
  color: white;
  background: var(--black);
  box-shadow: 0 18px 48px rgba(5, 5, 5, 0.12);
  cursor: pointer;
}

.talent-card[hidden] {
  display: none;
}

.talent-card:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 4px;
}

.talent-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.04);
  transition:
    filter 260ms ease,
    transform 420ms ease;
}

.talent-card:hover img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.035);
}

.talent-card::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.82));
}

.talent-card div {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 15px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(5, 5, 5, 0.46);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.talent-card h3 {
  margin: 0 0 7px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.talent-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.talent-empty {
  display: none;
  margin: 34px 0 0;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.talent-empty.is-visible {
  display: block;
}

.talent-modal[hidden] {
  display: none;
}

.talent-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  padding: clamp(18px, 4vw, 56px);
  place-items: center;
}

.talent-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(14px) saturate(0.8);
  cursor: pointer;
}

.talent-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(295px, 0.46fr) minmax(610px, 1fr);
  gap: 0;
  width: min(1138px, calc(100vw - 36px));
  max-height: min(690px, 90svh);
  overflow: auto;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 6%, rgba(196, 163, 86, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 233, 0.97));
  box-shadow: 0 38px 112px rgba(0, 0, 0, 0.45);
}

.talent-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.talent-modal-profile {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 100%;
  border-right: 1px solid rgba(17, 17, 17, 0.12);
  padding: 24px 28px 24px;
  color: var(--ink);
}

.talent-modal-portrait {
  overflow: hidden;
  height: clamp(230px, 33svh, 292px);
  min-height: 0;
  border-radius: 8px;
  background: #d9d2c5;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.14);
}

.talent-modal-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.talent-modal-details {
  display: grid;
  gap: 10px;
}

.talent-modal-details .eyebrow {
  display: none;
}

.talent-modal-details h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.7vw, 2.95rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.talent-modal-category {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.talent-modal-email {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  max-width: 100%;
  border-top: 1px solid rgba(196, 163, 86, 0.32);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  padding: 12px 0 11px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.talent-modal-email::before {
  content: "";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(196, 163, 86, 0.46);
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%239a7531' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E")
    center / 13px 13px no-repeat;
}

.talent-socials {
  display: grid;
  gap: 0;
  margin-top: 0;
}

.talent-socials a {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 40px;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.social-icon svg {
  width: 15px;
  height: 15px;
  stroke: white;
  stroke-width: 1.8;
  fill: none;
}

.social-icon-facebook svg path {
  fill: white;
  stroke: none;
}

.social-icon-youtube svg rect {
  fill: none;
}

.social-icon-youtube svg path {
  fill: white;
  stroke: none;
}

.social-username {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.talent-modal-videos {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 100%;
  padding: 56px 30px 34px;
  color: var(--ink);
}

.talent-modal-bio {
  max-width: 620px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  padding: 0 54px 18px 0;
}

.talent-modal-bio p {
  margin: 0;
}

.talent-modal-bio p + p {
  margin-top: 12px;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(0.88rem, 1.05vw, 1.02rem);
  font-weight: 700;
  line-height: 1.5;
}

.talent-modal-videos-head {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  padding-right: 54px;
}

.talent-modal-videos-head p,
.talent-modal-videos-head span {
  margin: 0;
}

.talent-modal-videos-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.talent-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.talent-video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 40px rgba(5, 5, 5, 0.1);
}

.talent-video-card video {
  display: block;
  width: 100%;
  max-height: 430px;
  aspect-ratio: 9 / 16;
  background: var(--black);
  object-fit: cover;
}

.contact-page-hero {
  min-height: clamp(390px, 58svh, 600px);
}

.contact-directory {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: var(--white);
}

.contact-info h2 {
  max-width: 520px;
  margin-bottom: 14px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(1.9rem, 3vw, 3.35rem);
  font-weight: 900;
  line-height: 1;
}

.contact-info > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.1vw, 1.04rem);
  line-height: 1.52;
}

.contact-detail-list {
  display: grid;
  gap: 1px;
  margin-top: clamp(22px, 3vw, 34px);
  background: rgba(17, 17, 17, 0.12);
}

.contact-detail {
  display: grid;
  gap: 7px;
  padding: clamp(17px, 2.2vw, 25px);
  background: var(--paper);
}

.contact-detail span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 850;
  line-height: 1.2;
}

.contact-page-form {
  padding: clamp(24px, 4vw, 44px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-page-form h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: stretch;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.intro-visual {
  height: clamp(300px, 50svh, 500px);
  max-height: calc(100svh - 180px);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: var(--shadow);
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
}

.intro-content {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
}

.intro .section-copy h2 {
  max-width: 760px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(2rem, 3.7vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
}

.intro-text {
  max-width: 660px;
}

.intro-text,
.section-copy p,
.contact-form p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.65;
}

.help {
  position: relative;
  overflow: visible;
  min-height: 245vh;
  background:
    radial-gradient(circle at 78% 20%, rgba(36, 92, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #efede6 0%, #f7f4ee 100%);
}

.help-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: stretch;
  min-height: 195vh;
}

.help-left {
  display: grid;
  align-items: start;
}

.help-intro {
  position: sticky;
  top: 104px;
  z-index: 2;
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  padding-bottom: 18px;
}

.media-stage {
  position: relative;
  min-height: 100%;
  overflow: visible;
}

.section-copy {
  max-width: 900px;
}

.help-statement {
  max-width: 500px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.04rem, 1.7vw, 1.38rem);
  font-weight: 700;
  line-height: 1.34;
}

.help-switcher {
  position: relative;
  display: flex;
  min-height: clamp(250px, 30vw, 340px);
  align-items: center;
  max-width: 500px;
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 48px rgba(17, 17, 17, 0.07);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.switcher-body {
  display: grid;
  gap: 12px;
  padding-right: 34px;
}

.help-switcher.is-changing {
  opacity: 0.78;
  transform: translateY(4px);
}

.switcher-count {
  display: inline-block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.help-switcher h2 {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 3.3rem);
  font-weight: 850;
  line-height: 1;
}

.help-switcher p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.6;
}

.switcher-dots {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.switcher-dots span {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(17, 17, 17, 0.34);
  border-radius: 50%;
  background: transparent;
  transition:
    height 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.switcher-dots span.is-active {
  height: 22px;
  border-color: var(--ink);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(36, 92, 255, 0.1);
}

.help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.solution-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.solution-button:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.solution-button.is-primary {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 4px 0 0 var(--cobalt);
}

.media-orbit {
  position: sticky;
  top: 96px;
  min-height: min(760px, calc(100vh - 110px));
  transform: translateY(0);
  transition: transform 120ms linear;
}

.bubble {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 50%;
  opacity: 0;
  box-shadow: var(--shadow);
  background: #ddd;
  transform: translate3d(0, var(--bubble-y, 260px), 0) scale(var(--bubble-scale, 0.82));
  transition: opacity 180ms linear;
}

.bubble.is-active img {
  animation: float 7s ease-in-out infinite alternate;
}

.bubble img,
.bubble video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bubble-large {
  top: -42px;
  right: 1%;
  width: min(320px, 48vw);
  aspect-ratio: 1;
}

.bubble-mid {
  top: 58px;
  left: 2%;
  width: min(210px, 34vw);
  aspect-ratio: 1;
  animation-delay: -2s;
}

.bubble-center {
  top: 270px;
  left: 8%;
  width: min(320px, 46vw);
  aspect-ratio: 1;
  animation-delay: -2.8s;
}

.bubble-small {
  top: 178px;
  right: -5%;
  width: min(190px, 30vw);
  aspect-ratio: 1;
  animation-delay: -4s;
}

.bubble-connector {
  top: 445px;
  left: 38%;
  width: min(190px, 30vw);
  aspect-ratio: 1;
  animation-delay: -3.4s;
}

.bubble-pill {
  top: 505px;
  right: 1%;
  width: min(230px, 35vw);
  aspect-ratio: 1;
  border-radius: 50%;
  animation-delay: -1.5s;
}

.bubble-late {
  top: 610px;
  left: 12%;
  width: min(210px, 33vw);
  aspect-ratio: 1;
  animation-delay: -5s;
}

.bubble-video::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
}

.contact-form {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 48px rgba(17, 17, 17, 0.07);
}

.campaigns {
  color: white;
  min-height: 100svh;
  background:
    linear-gradient(130deg, rgba(36, 92, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #080808, #171717);
}

.campaigns-head {
  max-width: 980px;
}

.campaigns-head h2 {
  max-width: 520px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: white;
  font-size: clamp(1.45rem, 2.45vw, 2.55rem);
  font-weight: 850;
  line-height: 1.02;
}

.campaign-video-carousel {
  padding-top: clamp(22px, 3.8vw, 42px);
}

.campaign-video-stage {
  position: relative;
  height: clamp(390px, 45vw, 510px);
  overflow: hidden;
}

.campaign-video-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(285px, 25vw);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%) translateX(var(--x, 0)) scale(var(--scale, 0.72));
  opacity: var(--opacity, 0.42);
  z-index: var(--z, 1);
  filter: grayscale(var(--gray, 1)) brightness(var(--bright, 0.58));
  transition:
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 520ms ease,
    filter 520ms ease;
}

.campaign-video-card.is-active {
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.52);
}

.campaign-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-video-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.72));
}

.campaign-video-card p {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  margin: 0;
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campaign-slider {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.campaign-slider button {
  width: 40px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.campaign-slider button.is-active {
  width: 74px;
  background: white;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(320px, 0.76fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--paper);
}

.contact-visual {
  min-height: clamp(360px, 42vw, 520px);
  overflow: hidden;
  border: 0;
  border-radius: 0 120px 0 0;
  box-shadow: var(--shadow);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 16px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  font-weight: 850;
  line-height: 0.96;
}

.contact-form > p {
  max-width: 520px;
  margin-bottom: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.26);
  border-radius: 0;
  padding: 10px 0 13px;
  color: var(--ink);
  background: transparent;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(36, 92, 255, 0.42);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.66);
  background: var(--black);
}

.site-footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer p {
  margin: 0 auto 0 0;
  color: white;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes heroPulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

@keyframes scan {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-240px);
  }
}

@keyframes logos {
  to {
    transform: translateX(-50%);
  }
}

@keyframes float {
  to {
    transform: translate3d(8px, -18px, 0) scale(1.02);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
    place-items: center;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .mobile-nav {
    position: fixed;
    top: 82px;
    left: 18px;
    right: 18px;
    z-index: 19;
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(251, 250, 246, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 16px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-nav .mobile-cta {
    margin-top: 6px;
    color: white;
    background: var(--ink);
    box-shadow: inset 4px 0 0 var(--cobalt);
  }

  .hero-content {
    margin-inline: 18px;
    padding-top: 132px;
    padding-bottom: 96px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48) 44%, rgba(0, 0, 0, 0.88)),
      radial-gradient(circle at 68% 24%, rgba(36, 92, 255, 0.16), transparent 30%);
  }

  .intro,
  .page-hero-inner,
  .editorial-split,
  .help-grid,
  .contact,
  .contact-directory {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .influencer-grid,
  .values-grid,
  .directory-head,
  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-strip,
  .directory-head,
  .mission-vision {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    min-height: auto;
  }

  .intro-visual {
    min-height: 380px;
  }

  .help {
    min-height: auto;
  }

  .help-intro,
  .media-stage,
  .media-orbit {
    position: relative;
    top: auto;
  }

  .media-orbit {
    min-height: 520px;
  }

  .contact-visual {
    min-height: 420px;
  }

  .campaign-video-stage {
    height: 520px;
  }

  .campaign-video-card {
    width: min(280px, 66vw);
  }

  .talent-modal-panel {
    grid-template-columns: 1fr;
    width: min(720px, calc(100vw - 28px));
  }

  .talent-modal-portrait {
    height: 360px;
  }

  .talent-video-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    gap: 9px;
    font-size: 0.72rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    max-width: 92px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .button {
    width: 100%;
  }

  .campaign-video-stage {
    height: 500px;
  }

  .campaign-video-card {
    width: 66vw;
  }

  .campaign-slider button {
    width: 30px;
  }

  .campaign-slider button.is-active {
    width: 54px;
  }

  .section-pad {
    padding-inline: 16px;
  }

  .talent-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-inline: -16px;
    margin-top: 18px;
    padding: 0 16px 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .talent-filters::-webkit-scrollbar {
    display: none;
  }

  .talent-filters button {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.63rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-inline: 16px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.25rem);
  }

  .editorial-image {
    min-height: 330px;
  }

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

  .talent-card {
    min-height: 330px;
  }

  .media-orbit {
    min-height: 430px;
  }

  .bubble-large {
    right: 0;
    width: 66vw;
  }

  .bubble-mid {
    top: 238px;
    width: 45vw;
  }

  .bubble-small {
    right: 4%;
    width: 33vw;
  }

  .stories-head {
    display: block;
  }

  .talent-modal {
    padding: 10px;
  }

  .talent-modal-panel {
    max-height: 94svh;
  }

  .talent-modal-profile,
  .talent-modal-videos {
    padding: 20px 18px;
  }

  .talent-modal-videos-head {
    display: grid;
    padding-right: 46px;
  }

  .talent-video-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }
}

@media (max-width: 430px) {
  .talent-grid {
    grid-template-columns: 1fr;
  }
}

/* Admin system shell */
.admin-page {
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  color: #172033;
  background: #f4f6fa;
}

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

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10;
  display: flex;
  width: 292px;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, #111827 0%, #0b1220 100%);
  box-shadow: 18px 0 46px rgba(15, 23, 42, 0.22);
}

.admin-brand {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 14px;
  padding: 24px 22px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-logo {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: #020617;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.admin-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-brand-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-brand-text strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.05;
}

.admin-brand-text span {
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-menu {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  padding: 16px 12px 22px;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.38) transparent;
}

.admin-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 12px;
  color: #cbd5e1;
  font-size: 0.91rem;
  font-weight: 730;
  letter-spacing: 0;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.admin-menu a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.055);
}

.admin-menu a.is-active {
  color: #ffffff;
  border-color: rgba(59, 130, 246, 0.42);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.95), rgba(59, 130, 246, 0.72));
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.23);
}

.admin-menu-icon {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.08);
}

.admin-menu-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.admin-menu a.is-active .admin-menu-icon {
  color: #1d4ed8;
  background: #ffffff;
}

.admin-shell {
  min-height: 100svh;
  margin-left: 292px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(180deg, #eef4ff 0, #f4f6fa 250px),
    #f4f6fa;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 28px;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.admin-search {
  position: relative;
  width: min(520px, 100%);
}

.admin-search span {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 14px;
  height: 14px;
  border: 2px solid #64748b;
  border-radius: 50%;
  transform: translateY(-50%);
}

.admin-search span::after {
  position: absolute;
  right: -6px;
  bottom: -5px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: #64748b;
  transform: rotate(45deg);
}

.admin-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 0 16px 0 44px;
  color: #172033;
  outline: none;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 650;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.admin-search input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.admin-search input::placeholder {
  color: #7d8aa0;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.admin-notification {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  cursor: pointer;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.admin-notification span {
  position: relative;
  width: 14px;
  height: 16px;
  border: 2px solid #475569;
  border-radius: 8px 8px 5px 5px;
}

.admin-notification span::before {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 6px;
  height: 5px;
  border: 2px solid #475569;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
  transform: translateX(-50%);
}

.admin-notification span::after {
  position: absolute;
  right: -7px;
  top: -8px;
  width: 8px;
  height: 8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  content: "";
  background: #ef4444;
}

.admin-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 6px 12px 6px 7px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.admin-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: #111827;
  font-size: 0.74rem;
  font-weight: 900;
}

.admin-profile span:last-child {
  display: grid;
  gap: 1px;
}

.admin-profile strong {
  color: #172033;
  font-size: 0.88rem;
  line-height: 1.1;
}

.admin-profile small {
  color: #16a34a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.admin-main {
  min-height: calc(100svh - 78px);
  padding: 28px;
}

.admin-empty-dashboard {
  display: flex;
  min-height: calc(100svh - 134px);
  flex-direction: column;
  gap: 18px;
}

.admin-empty-dashboard p {
  margin: 0 0 8px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-empty-dashboard h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

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

.admin-kpi-card {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 12px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.admin-kpi-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: #2563eb;
}

.admin-kpi-card:nth-child(2)::before {
  background: #16a34a;
}

.admin-kpi-card:nth-child(3)::before {
  background: #f59e0b;
}

.admin-kpi-card:nth-child(4)::before {
  background: #ef4444;
}

.admin-kpi-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
}

.admin-kpi-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.admin-kpi-icon.is-blue {
  color: #2563eb;
  background: #dbeafe;
}

.admin-kpi-icon.is-green {
  color: #15803d;
  background: #dcfce7;
}

.admin-kpi-icon.is-amber {
  color: #b45309;
  background: #fef3c7;
}

.admin-kpi-icon.is-red {
  color: #dc2626;
  background: #fee2e2;
}

.admin-kpi-label {
  display: block;
  max-width: calc(100% - 48px);
  min-height: 38px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
}

.admin-kpi-card strong {
  display: block;
  margin-top: 12px;
  color: #111827;
  font-size: 2.25rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.admin-kpi-card small {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 750;
}

.admin-campaign-overview {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2.2fr);
  gap: 16px;
}

.admin-total-card,
.admin-chart-card {
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.admin-total-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background:
    radial-gradient(circle at 84% 16%, rgba(125, 211, 252, 0.28), transparent 30%),
    linear-gradient(135deg, #10213f 0%, #1d4ed8 54%, #2563eb 100%);
  color: #ffffff;
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.24);
}

.admin-total-card::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, #60a5fa, #22c55e, #f59e0b);
}

.admin-total-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.42) 0 2px, transparent 2px),
    radial-gradient(circle at 72% 72%, rgba(255, 255, 255, 0.32) 0 2px, transparent 2px);
  background-size: 18px 18px, 88px 88px, 120px 120px;
}

.admin-total-card span,
.admin-chart-head span {
  color: #475569;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-total-card span,
.admin-total-card small,
.admin-total-card strong {
  position: relative;
  z-index: 1;
}

.admin-total-card span {
  color: rgba(255, 255, 255, 0.78);
}

.admin-total-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 10px;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.68rem !important;
  letter-spacing: 0.1em !important;
}

.admin-total-card strong {
  width: fit-content;
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(5.1rem, 8vw, 7.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-shadow: 0 18px 34px rgba(3, 7, 18, 0.28);
}

.admin-total-card small,
.admin-chart-head small {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-total-card small {
  color: rgba(255, 255, 255, 0.82);
}

.admin-chart-card {
  min-height: 260px;
  padding: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.admin-chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.admin-chart-head div {
  display: grid;
  gap: 6px;
}

.admin-chart-head strong {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1.1;
}

.admin-bar-chart {
  display: grid;
  min-height: 166px;
  align-items: end;
  grid-auto-columns: minmax(54px, 1fr);
  grid-auto-flow: column;
  gap: 14px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  background-image: linear-gradient(to top, rgba(148, 163, 184, 0.16) 1px, transparent 1px);
  background-size: 100% 40px;
}

.admin-bar-item {
  display: grid;
  height: 160px;
  align-items: end;
  justify-items: center;
  gap: 8px;
  grid-template-rows: 22px 1fr 18px;
}

.admin-bar-item strong {
  color: #334155;
  font-size: 0.82rem;
  font-weight: 850;
}

.admin-bar-item span {
  display: block;
  width: min(100%, 42px);
  min-height: 6px;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.admin-bar-item small {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 850;
}

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

.admin-panel-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 12px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.admin-panel-head {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.admin-panel-head span {
  color: #475569;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-panel-head strong {
  color: #111827;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.15;
}

.admin-schedule-list,
.admin-task-list,
.admin-brand-rank {
  display: grid;
  gap: 10px;
  padding: 16px 0 0;
  margin: 0;
  list-style: none;
}

.admin-schedule-list li {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 42px;
  border: 1px solid #e8eef6;
  border-radius: 8px;
  padding: 8px 10px;
  background: linear-gradient(90deg, #eff6ff, #f8fafc 38%);
}

.admin-schedule-list time {
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 850;
}

.admin-schedule-list span,
.admin-task-list p,
.admin-brand-rank small {
  color: #475569;
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.35;
}

.admin-task-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 42px;
  border: 1px solid #e8eef6;
  border-radius: 8px;
  padding: 8px 10px;
  background: #f8fafc;
}

.admin-task-list input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: #2563eb;
  cursor: pointer;
}

.admin-task-list p {
  margin: 0;
}

.admin-brand-rank li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  border: 1px solid #e8eef6;
  border-radius: 8px;
  padding: 8px 10px;
  background: #f8fafc;
}

.admin-brand-rank li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: 0.72rem;
  font-weight: 900;
}

.admin-brand-rank strong {
  display: block;
  color: #111827;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.1;
}

.admin-brand-rank small {
  justify-self: end;
  white-space: nowrap;
}

.admin-add-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.admin-add-row input {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 0 12px;
  color: #172033;
  outline: none;
  background: #ffffff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 650;
}

.admin-add-row input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.admin-add-row button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #ffffff;
  cursor: pointer;
  background: #2563eb;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
}

@media (max-width: 1120px) {
  .admin-sidebar {
    width: 248px;
  }

  .admin-shell {
    margin-left: 248px;
  }

  .admin-brand-text strong {
    font-size: 0.92rem;
  }

  .admin-menu a {
    font-size: 0.86rem;
  }
}

@media (max-width: 820px) {
  .admin-page {
    overflow: auto;
  }

  .admin-sidebar {
    position: static;
    width: 100%;
    min-height: auto;
  }

  .admin-brand {
    min-height: 86px;
  }

  .admin-menu {
    flex-direction: row;
    overflow-x: auto;
    padding: 12px;
  }

  .admin-menu a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .admin-shell {
    margin-left: 0;
  }

  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
  }

  .admin-user {
    justify-content: space-between;
  }

  .admin-main {
    padding: 16px;
  }

  .admin-empty-dashboard {
    min-height: 58svh;
    padding: 22px;
  }

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

  .admin-campaign-overview {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .admin-profile {
    min-width: 0;
  }

  .admin-profile span:last-child {
    display: none;
  }

  .admin-search input {
    font-size: 0.86rem;
  }

  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }

  .admin-chart-head {
    display: grid;
  }

  .admin-bar-chart {
    grid-auto-columns: minmax(42px, 1fr);
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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