:root {
  --black: #070707;
  --panel: #141414;
  --gold: #c8a24b;
  --gold-light: #ead08a;
  --gold-dim: rgba(200, 162, 75, 0.12);
  --gold-glow: rgba(200, 162, 75, 0.18);
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-dim: rgba(139, 92, 246, 0.12);
  --purple-glow: rgba(139, 92, 246, 0.18);
  --white: #d1c4ff;
  --muted: #a1a1a1;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
  --ff-display: "Bebas Neue", sans-serif;
  --ff-body: "Inter", sans-serif;
  --ff-serif: "Playfair Display", serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 300;
  background:
    radial-gradient(circle at top right, var(--purple-dim), transparent 28%),
    radial-gradient(circle at bottom left, rgba(200, 162, 75, 0.06), transparent 32%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 110px 110px;
  opacity: 0.18;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 85%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.12) 68%, rgba(0, 0, 0, 0.32) 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(139, 92, 246, 0.3);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 999px;
}

#cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 66%);
  transition: opacity 0.3s;
}

nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 64px;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 162, 75, 0.12);
  transition: background 0.25s var(--ease-out-expo), border-color 0.25s var(--ease-out-expo);
}

nav.scrolled {
  background: rgba(7, 7, 7, 0.94);
  border-bottom-color: rgba(200, 162, 75, 0.22);
}

.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--ff-display);
  letter-spacing: 0.18em;
  text-decoration: none;
}

.nav-logo {
  font-size: 1.45rem;
  color: var(--white);
}

.dot {
  color: var(--gold);
}

.nav-links,
.footer-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.footer-links a {
  position: relative;
  text-decoration: none;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a {
  padding-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.28s var(--ease-out-expo);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.btn-primary,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.22s var(--ease-out-expo), box-shadow 0.22s var(--ease-out-expo), opacity 0.22s ease;
}

.nav-cta,
.btn-primary,
.form-submit {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: #0d0d0d;
}

.nav-cta {
  padding: 10px 22px;
}

.nav-cta:hover,
.btn-primary:hover,
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.25);
}

.hero-noise,
.hero-gradient,
.hero-orb,
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0 64px;
}

.hero-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.7;
}

.hero-gradient {
  background:
    radial-gradient(ellipse 60% 68% at 70% 40%, rgba(200, 162, 75, 0.1) 0%, transparent 62%),
    radial-gradient(ellipse 38% 50% at 18% 82%, rgba(200, 162, 75, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
}

.hero-orb {
  right: 8%;
  top: 16%;
  width: 520px;
  height: 520px;
  left: auto;
  bottom: auto;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 68%);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-lines {
  right: 0;
  left: auto;
  width: 42%;
  overflow: hidden;
}

.hero-lines span {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--purple-glow) 40%, var(--purple-dim) 80%, transparent 100%);
}

.hero-lines span:first-child {
  right: 28%;
}

.hero-lines span:last-child {
  right: 54%;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-size: 0.6rem;
  font-weight: 700;
}

.hero-eyebrow::before,
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-headline,
.section-title,
.creator-name,
.hover-name,
.service-name,
.footer-logo {
  font-family: var(--ff-display);
}

.hero-headline {
  margin: 0;
  color: var(--white);
  line-height: 0.88;
  font-size: clamp(4.8rem, 10vw, 10.5rem);
  letter-spacing: 0.015em;
}

.hero-headline .line-serif {
  display: block;
  margin: 8px 0 2px;
  font-family: var(--ff-serif);
  font-size: 0.58em;
  font-style: italic;
  line-height: 1.14;
  font-weight: 400;
  color: var(--white);
}

.hero-headline .line-gold,
.section-title .gold,
.stat-num,
.stat-fast {
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 520px;
  margin: 28px 0 52px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  padding: 16px 34px;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.22s ease, gap 0.22s ease;
}

.btn-ghost::after {
  content: "↓";
  font-size: 0.9rem;
  transition: transform 0.28s var(--ease-out-expo);
}

.btn-ghost:hover {
  color: var(--gold);
  gap: 14px;
}

.btn-ghost:hover::after {
  transform: translateY(3px);
}

.scroll-indicator {
  position: absolute;
  left: 64px;
  bottom: 42px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-indicator-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}

.scroll-indicator span {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.55rem;
  color: var(--muted);
}

.marquee-bar {
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: 12px 0;
  background: linear-gradient(90deg, var(--purple), var(--gold));
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-track span {
  padding: 0 40px;
  white-space: nowrap;
  font-family: var(--ff-display);
  font-size: 0.88rem;
  letter-spacing: 0.25em;
  color: var(--black);
}

.marquee-track .sep {
  padding: 0;
  opacity: 0.38;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 64px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(10, 10, 10, 0.98));
  border-top: 1px solid rgba(200, 162, 75, 0.08);
  border-bottom: 1px solid rgba(200, 162, 75, 0.12);
}

.stat {
  position: relative;
  padding: 42px 0;
  text-align: center;
  transition: background 0.25s ease;
}

.stat:hover {
  background: rgba(200, 162, 75, 0.025);
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: rgba(200, 162, 75, 0.12);
}

.stat-num {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-word {
  font-family: var(--ff-display);
}

.stat-fast {
  display: block;
  margin-top: 4px;
  font-size: 0.45em;
  letter-spacing: 0.1em;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.6rem;
  color: var(--muted);
  font-weight: 500;
}

.section-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
}

.spacer-sm {
  height: 28px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}

[data-reveal-delay="5"] {
  transition-delay: 0.5s;
}

#about,
#updates,
#services,
#contact {
  background: linear-gradient(180deg, rgba(14, 14, 14, 1), rgba(11, 11, 11, 1));
}

#about,
#talent,
#updates,
#services,
#why,
#contact {
  position: relative;
  padding: 130px 64px;
}

#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  overflow: hidden;
}

#about::before {
  content: "MSC";
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 22vw;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(200, 162, 75, 0.03);
  pointer-events: none;
  user-select: none;
}

.about-body p,
.service-desc,
.why-item-desc,
.contact-info-val,
.hero-sub,
.footer-copy {
  line-height: 1.9;
}

.about-body p {
  margin: 0 0 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

.about-body p strong {
  color: var(--white);
  font-weight: 600;
}

.text-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 162, 75, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.about-location-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 0;
  padding: 20px 24px;
  background: linear-gradient(90deg, rgba(200, 162, 75, 0.08) 0%, transparent 100%);
  border-left: 2px solid var(--gold);
}

.location-main {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
}

.location-main strong {
  color: var(--gold);
}

.location-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.location-sub span {
  color: var(--white);
}

.about-card,
.service-item,
.why-item,
.creator-card,
.contact-form {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(17, 17, 17, 0.98));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: var(--shadow);
}

.creator-card {
  text-decoration: none;
  cursor: pointer;
}

.about-card {
  position: relative;
  padding: 52px 44px;
}

.about-card::before,
.about-card::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
}

.about-card::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.about-card::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.about-quote-text {
  margin: 0 0 28px;
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--white);
}

.about-quote-rule {
  width: 40px;
  height: 1px;
  margin-bottom: 16px;
  background: var(--gold);
}

.about-quote-attr {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold);
}



/* --- Updates Section --- */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.update-card {
  position: relative;
  padding: 36px 36px 32px;
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.98), rgba(14, 14, 14, 0.98));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  transition: border-color 0.28s ease, transform 0.28s var(--ease-out-expo), box-shadow 0.28s ease;
  overflow: hidden;
}

.update-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 44px;
  height: 44px;
  border-top: 2px solid var(--purple);
  border-left: 2px solid var(--purple);
  opacity: 0.5;
  transition: opacity 0.28s ease;
}

.update-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
}

.update-card:hover::before {
  opacity: 1;
}

.update-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.update-date {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.update-title {
  margin: 0 0 14px;
  font-family: var(--ff-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--white);
}

.update-desc {
  margin: 0 0 20px;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--muted);
}

.update-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  transition: color 0.2s ease, gap 0.2s ease;
}

.update-cta:hover {
  color: var(--gold-light);
  gap: 10px;
}

.updates-empty {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 32px;
}


#talent {
  background: linear-gradient(180deg, rgba(9, 9, 9, 1), rgba(12, 12, 12, 1));
}

.talent-header,
.form-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.talent-header {
  gap: 24px;
  margin-bottom: 56px;
}

.carousel-outer {
  position: relative;
}

.carousel-outer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to left, rgba(9, 9, 9, 1), transparent);
  pointer-events: none;
  z-index: 5;
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s var(--ease-out-expo);
  will-change: transform;
  touch-action: pan-y;
}

.creator-card {
  flex: 0 0 calc(33.333% - 14px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.creator-card-inner {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out-expo);
}

.creator-card:hover .card-bg {
  transform: scale(1.06);
}

.card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 42%, rgba(200, 162, 75, 0.08) 100%);
}

.card-bg--placeholder {
  background: linear-gradient(160deg, #1a1408 0%, #110d04 52%, #080808 100%);
}

.card-monogram {
  position: relative;
  z-index: 1;
  font-family: var(--ff-display, serif);
  font-size: clamp(48px, 9vw, 78px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  opacity: 0.85;
  text-shadow: 0 2px 24px var(--gold-glow);
}

/* Instagram-style header for image cards (no embeddable post available),
   so they match the username + Follow row of the live embedded cards. */
.ig-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  pointer-events: auto;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.18) 65%, transparent 100%);
}

.ig-avatar {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.38);
}

.ig-handle {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

.ig-follow {
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0095f6;
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  transition: color 0.2s ease;
}

.ig-follow:hover {
  color: #1aa3ff;
}

.card-foot,
.card-hover-panel {
  position: absolute;
  left: 0;
  right: 0;
}

.card-foot {
  bottom: 0;
  padding: 56px 22px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.62) 52%, transparent 100%);
  transition: opacity 0.2s ease;
}

.creator-name {
  margin-bottom: 5px;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: 0.07em;
  color: var(--white);
}

.creator-handle,
.hover-handle {
  color: var(--gold);
}

.creator-handle {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.card-hover-panel {
  bottom: 0;
  padding: 24px 22px;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out-expo);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.creator-card:hover .card-hover-panel {
  transform: translateY(0);
}

.creator-card:hover .card-foot {
  opacity: 0;
}

.hover-name {
  margin-bottom: 4px;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  color: var(--white);
}

.hover-handle {
  margin-bottom: 16px;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}

.hover-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.hover-stat {
  font-size: 0.7rem;
  color: rgba(245, 243, 239, 0.58);
}

.hover-stat strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.hover-niche {
  display: inline-block;
  padding: 5px 12px;
  background: var(--purple);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.58rem;
  font-weight: 700;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-btn,
.carousel-dot {
  border: none;
  outline: none;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(139, 92, 246, 0.32);
  background: transparent;
  color: var(--purple);
  display: grid;
  place-items: center;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease;
}

.carousel-btn:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: var(--purple);
  transform: scale(1.04);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 6px;
}

.carousel-dot {
  width: 18px;
  height: 2px;
  padding: 0;
  background: rgba(200, 162, 75, 0.22);
  cursor: pointer;
  transition: width 0.35s var(--ease-out-expo), background 0.25s ease;
}

.carousel-dot.active {
  width: 32px;
  background: var(--purple);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  background: rgba(139, 92, 246, 0.12);
}

.services-grid .service-item:nth-child(8) {
  grid-column: 2 / 3;
}

.service-item {
  position: relative;
  overflow: hidden;
  padding: 52px 40px;
  transition: transform 0.25s ease, background 0.35s ease, border-color 0.35s ease;
}

.service-item::before,
.service-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.service-item::before {
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.service-item::after {
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 110%, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-item:hover {
  transform: translateY(-2px);
  background: rgba(24, 24, 24, 1);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover::after {
  opacity: 1;
}

.service-num {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(200, 162, 75, 0.12);
  transition: color 0.35s ease;
}

.service-item:hover .service-num {
  color: rgba(139, 92, 246, 0.25);
}

.service-name {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.service-desc {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

#why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 80px;
  align-items: center;
  background: linear-gradient(180deg, rgba(8, 8, 8, 1), rgba(11, 11, 11, 1));
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.why-item {
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.why-item:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.26);
  background: rgba(139, 92, 246, 0.03);
}

.why-icon {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.why-item-title {
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.why-item-desc {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

#contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 96px;
  align-items: start;
  background: linear-gradient(180deg, rgba(14, 14, 14, 1), rgba(10, 10, 10, 1));
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.contact-info-label {
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--gold);
}

.contact-info-val {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
}

.form-success,
.form-error {
  display: none;
}

.form-success {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px;
  background: rgba(200, 162, 75, 0.07);
  border: 1px solid rgba(200, 162, 75, 0.18);
}

.form-success-icon {
  color: var(--gold);
  font-size: 1.05rem;
}

.form-success-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-success-sub,
.form-error {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.form-error {
  padding: 14px 16px;
  color: #f4cfca;
  background: rgba(120, 30, 30, 0.2);
  border: 1px solid rgba(232, 121, 101, 0.22);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(209, 196, 255, 0.78);
  transition: color 0.2s ease;
}

.form-field:focus-within label {
  color: var(--gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  appearance: none;
  width: 100%;
  border: 1px solid rgba(200, 162, 75, 0.12);
  border-bottom-color: rgba(200, 162, 75, 0.25);
  background: rgba(20, 20, 20, 0.98);
  color: var(--white);
  padding: 13px 16px;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #5a5a5a;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(200, 162, 75, 0.03);
  box-shadow: 0 0 0 3px rgba(200, 162, 75, 0.08);
}

.form-field select option {
  background: var(--panel);
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-footer-row {
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-submit {
  position: relative;
  overflow: hidden;
  padding: 16px 38px;
}

.form-submit:disabled {
  cursor: progress;
  opacity: 0.85;
  transform: none;
  box-shadow: none;
}

.btn-spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(8, 8, 8, 0.2);
  border-top-color: #111;
  animation: spin 0.8s linear infinite;
}

.form-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 36px 64px;
  background: linear-gradient(180deg, rgba(7, 7, 7, 1), rgba(5, 5, 5, 1));
  border-top: 1px solid rgba(200, 162, 75, 0.12);
}

.footer-logo {
  font-size: 1.25rem;
  color: var(--white);
}

.footer-copy {
  margin: 0;
  text-align: center;
  color: rgba(209, 196, 255, 0.78);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  justify-content: flex-end;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--muted);
  border: 1px solid rgba(200, 162, 75, 0.18);
  background: rgba(200, 162, 75, 0.04);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.social-link:hover {
  color: var(--purple-light);
  border-color: rgba(139, 92, 246, 0.55);
  background: rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

.footer-links a {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(209, 196, 255, 0.78);
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-28px) scale(1.04);
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0.2;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  #cursor-glow {
    display: none;
  }
}

.reduce-motion #cursor-glow {
  display: none;
}

.reduce-motion [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  #hero {
    padding: 86px 24px 0;
  }

  .hero-headline {
    font-size: clamp(3.8rem, 13vw, 6rem);
  }

  .hero-orb {
    width: 280px;
    height: 280px;
    right: -60px;
    top: 10%;
  }

  .hero-lines {
    display: none;
  }

  .scroll-indicator {
    left: 24px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .stat {
    padding: 28px 0;
    border-bottom: 1px solid rgba(200, 162, 75, 0.12);
  }

  #about,
  #talent,
  #events,
  #services,
  #why,
  #contact,
  #spotlight {
    padding: 80px 24px;
  }

  #about,
  #why,
  #contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-item:nth-child(8) {
    grid-column: auto;
  }

  .about-title-row {
    gap: 16px;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  /* (Obsolete content media query styles removed) */

  .creator-card {
    flex-basis: calc(80% - 10px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .talent-header,
  .form-footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-right {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .hero-content {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-card,
  .contact-form,
  .service-item,
  .why-item {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hover-stats {
    gap: 16px;
  }
}