:root {
  --bg: #050406;
  --surface: rgba(8, 8, 12, 0.92);
  --card: rgba(255, 255, 255, 0.02);
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --accent: #e2c388;
  --accent-strong: #f4d697;
  --text: #f8f7f4;
  --muted: rgba(248, 247, 244, 0.72);
  --transition: 0.35s ease;
  --font-sans: 'Roboto', 'Sora', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Roboto', 'Cormorant Garamond', 'Playfair Display', serif;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(215, 180, 106, 0.18), transparent 45%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  margin: 0 0 0.8rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

/* Talent Showcase Gallery */
.talent-showcase {
  padding: 4rem 0;
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
  gap: 2rem;
}

.showcase-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 0;
  font-family: var(--font-sans);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
}

.showcase-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-strong), transparent);
}

.showcase-btn {
  padding: 0.85rem 3rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, #5a7d5f, #6b8e70);
  border: none;
  border-radius: 50px;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(90, 125, 95, 0.3);
}

.showcase-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(90, 125, 95, 0.4);
  background: linear-gradient(135deg, #6b8e70, #7ca081);
}

.showcase-gallery {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  padding: 0 1rem;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 0.5rem 0;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 auto;
  width: 280px;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(244, 214, 151, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.gallery-nav:hover {
  background: rgba(244, 214, 151, 0.15);
  border-color: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(244, 214, 151, 0.2);
}

.gallery-nav.prev {
  margin-right: 0.5rem;
}

.gallery-nav.next {
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .showcase-header {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .showcase-title {
    font-size: 1.75rem;
  }

  .showcase-btn {
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
  }

  .gallery-item {
    width: 220px;
    height: 300px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .showcase-gallery {
    gap: 1rem;
  }

  .gallery-track {
    gap: 1rem;
  }
}

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

.container {
  width: min(1200px, 92vw);
  margin: auto;
  padding: 4rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 4, 6, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

.logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(226, 195, 136, 0.15), rgba(244, 214, 151, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.logo-mark svg {
  width: 60%;
  height: 60%;
  fill: url(#logoGradient);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-copy strong {
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.logo-copy small {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: var(--transition);
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  border-color: var(--border);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
  margin-left: auto;
}

.nav-toggle span {
  width: 60%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: var(--transition);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 4px;
}

.nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 9;
}

body.nav-open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

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

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    background: rgba(5, 4, 6, 0.96);
    backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 12;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    border-radius: 16px;
    font-size: 1.05rem;
  }

  body.nav-open .main-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    gap: 1rem;
  }
}

.btn {
  border: 1px solid rgba(215, 180, 106, 0.6);
  color: var(--text);
  background: transparent;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #140c02;
  border: none;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(215, 180, 106, 0.3);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.2);
}

.btn.text {
  border: none;
  color: var(--accent-strong);
}

.btn.full {
  width: 100%;
}

.btn:hover {
  transform: translateY(-3px);
}

.grid {
  display: grid;
  gap: 2.5rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(215, 180, 106, 0.15), transparent 50%);
  pointer-events: none;
}

/* Video Background Hero */
.hero--video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(135deg, #050406 0%, #08080c 50%, #050406 100%);
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-width: 100%;
  min-height: 100%;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(5, 4, 6, 0.88) 50%,
    rgba(0, 0, 0, 0.94) 100%
  );
  z-index: 1;
}

.hero--video .hero-container {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
  text-align: center;
  max-width: 900px;
}

.hero--video .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.page-banner__content {
  align-items: center;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 3.5rem 3rem;
  box-shadow: none;
  backdrop-filter: none;
  gap: 2.5rem;
  max-width: 960px;
}

.page-banner__intro {
  max-width: 720px;
}

.page-banner__intro .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 30px rgba(244, 214, 151, 0.6), 0 2px 8px rgba(0, 0, 0, 0.8);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.page-banner__intro h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 0 40px rgba(244, 214, 151, 0.15);
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.page-banner__intro p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(248, 247, 244, 0.92);
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.5);
  font-weight: 400;
  letter-spacing: 0.015em;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.page-banner__intro .hero-title {
  margin-bottom: 1rem;
}

.page-banner__grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.badge-list li {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.page-banner__card {
  border-radius: 20px;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.page-banner__card .label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.page-banner__card .price {
  font-size: 2.2rem;
  font-family: var(--font-serif);
  margin-bottom: 0.25rem;
  color: var(--text);
}

.page-banner__card .price span {
  font-size: 1rem;
  color: var(--muted);
}

.page-banner__card .muted {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.page-banner {
  min-height: 463px;
  height: 463px;
}

.page-banner .hero-container {
  padding: 6rem 0;
}

.page-banner .hero-video-wrapper {
  height: 100%;
}

@media (max-width: 768px) {
  .page-banner {
    min-height: 75vh;
    height: auto;
  }

  .page-banner .hero-container {
    padding: 4rem 1.5rem;
  }

  .page-banner .hero-video-wrapper {
    min-height: 75vh;
  }

  .page-banner__content {
    padding: 2rem;
  }

  .page-banner__grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero--video {
    min-height: 75vh;
    height: auto;
  }

  .hero--video .hero-container {
    padding: 4rem 1.5rem;
  }

  .hero-video-wrapper {
    min-height: 75vh;
  }
}

.hero--video .hero-content.in-view .hero-title {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero--video .hero-content.in-view .hero-eyebrow {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero--video .hero-content.in-view .hero-description {
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.eyebrow-text {
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 50%, var(--accent-strong) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s infinite linear;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 30px rgba(244, 214, 151, 0.3);
}

.eyebrow-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 3s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.title-line {
  display: block;
  background: linear-gradient(135deg, #f8f7f4 0%, #f4d697 30%, #e2c388 60%, #f4d697 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  position: relative;
  text-shadow: 
    0 0 40px rgba(244, 214, 151, 0.4),
    0 0 80px rgba(244, 214, 151, 0.2),
    0 4px 20px rgba(0, 0, 0, 0.5);
  animation: gradientShift 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(244, 214, 151, 0.3));
  transition: all 0.3s ease;
  transform-origin: center;
}

.hero-content:hover .title-line {
  transform: scale(1.02);
  filter: drop-shadow(0 0 30px rgba(244, 214, 151, 0.5));
}

.title-line::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(15px);
  opacity: 0.6;
}

.title-line:nth-child(1) {
  animation-delay: 0s;
}

.title-line:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% center;
    filter: drop-shadow(0 0 20px rgba(244, 214, 151, 0.3));
  }
  50% {
    background-position: 100% center;
    filter: drop-shadow(0 0 30px rgba(244, 214, 151, 0.5));
  }
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.description-text {
  color: var(--muted);
  display: inline-block;
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.01em;
  line-height: 1.8;
  transition: all 0.3s ease;
}

.hero-content:hover .description-text {
  color: rgba(248, 247, 244, 0.85);
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(244, 214, 151, 0.1);
}

.description-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(244, 214, 151, 0.1) 50%,
    transparent 100%
  );
  opacity: 0;
  animation: textGlow 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes textGlow {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 1s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.hero--split .container {
  padding: 6rem 0;
  align-items: center;
}

.hero--dark {
  background: linear-gradient(140deg, rgba(8, 8, 12, 0.95), rgba(5, 4, 6, 0.8));
  border-bottom: 1px solid var(--border);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.hero-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.media-overlay {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(5, 4, 6, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.orb-1 {
  background: var(--accent);
  top: 10%;
  right: 10%;
}

.orb-2 {
  background: #6bb1ff;
  bottom: 5%;
  left: 15%;
}

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(6, 6, 10, 0.95) 0%, rgba(8, 8, 12, 0.85) 50%, rgba(6, 6, 10, 0.95) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-strong), var(--accent), var(--accent-strong), transparent);
  animation: shimmer 3s infinite;
  opacity: 0.8;
}

.stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 195, 136, 0.3), transparent);
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}


/* 3D Cloud Carousel */
.cloud-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 2000px;
  perspective-origin: center center;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cloud-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.cloudcarousel {
  position: absolute;
  width: 320px;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.1s ease-out;
  cursor: grab;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  user-select: none;
  -webkit-user-select: none;
}

.cloudcarousel:active {
  cursor: grabbing;
}

@media (max-width: 768px) {
  .cloud-carousel-wrapper {
    height: 500px;
  }

  .cloudcarousel {
    width: 240px;
    height: 340px;
  }
}



.section {
  position: relative;
}

.section-heading {
  margin-bottom: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-strong);
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.card {
  background: var(--card);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(215, 180, 106, 0.4);
  transform: translateY(-6px);
}

.card.glass {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.link-cards .link-card {
  color: inherit;
}

.link-card span {
  color: var(--accent-strong);
  font-weight: 600;
}

.talent-roster {
  text-align: center;
}

.talent-roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.talent-card {
  position: relative;
  padding-top: 140%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  background-image: var(--talent-bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.talent-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 5, 0), rgba(3, 3, 5, 0.85) 80%);
}

.talent-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
}

.talent-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 1;
  text-align: left;
}

.talent-overlay span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.talent-overlay strong {
  font-size: 1.15rem;
  color: var(--text);
}

.talent-roster-note {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

.talent-roster-note .btn {
  padding: 0.5rem 1.2rem;
}

.quote-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 26px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-style: italic;
}

.split {
  align-items: center;
}

.features article {
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
}

.highlight {
  background: linear-gradient(135deg, rgba(10, 10, 18, 0.9), rgba(6, 5, 9, 0.9));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stacked-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Timeline Section with Video Background */
.timeline-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.timeline-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(135deg, #050406 0%, #08080c 50%, #050406 100%);
}

.timeline-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-width: 100%;
  min-height: 100%;
  filter: brightness(0.6);
}

.timeline-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(5, 4, 6, 0.85) 0%,
    rgba(8, 8, 12, 0.75) 50%,
    rgba(5, 4, 6, 0.9) 100%
  );
  z-index: 1;
}

.timeline-section .container {
  position: relative;
  z-index: 2;
}

.timeline-section .section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.timeline article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.timeline article:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 214, 151, 0.3);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.04), transparent 40%);
  z-index: -1;
}

.aurora {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  animation: drift 18s linear infinite;
  z-index: -2;
}

.aurora-1 {
  top: -120px;
  right: 5%;
  background: #f4d697;
}

.aurora-2 {
  bottom: -160px;
  left: 10%;
  background: #6a9bff;
  animation-delay: 6s;
}

.site::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 60%);
  pointer-events: none;
  z-index: -3;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(40px, -20px, 0) scale(1.1);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

.application {
  background: rgba(5, 4, 6, 0.8);
}

.application-form {
  gap: 1.2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--muted);
  gap: 0.3rem;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0.9rem;
  color: var(--text);
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(215, 180, 106, 0.4);
}

.form-message {
  min-height: 1.5rem;
}

.form-message.success {
  color: #4ade80;
}

.form-message.error {
  color: #fb7185;
}

.site-footer {
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}

.admin-body {
  background: #040309;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
}

.admin-container {
  width: min(960px, 95vw);
  padding: 3rem 0;
}

.hidden {
  display: none;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: rgba(255, 255, 255, 0.03);
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 900px) {
  .hero--video .hero-container {
    padding: 6rem 0;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .hero--video {
    min-height: 90vh;
  }

  .hero--video .hero-container {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
  }

  .hero-scroll-indicator {
    bottom: 2rem;
    font-size: 0.75rem;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .panel-header {
    flex-direction: column;
  }
}

/* Prevent horizontal overflow on mobile */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }
  
  body.site {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  .container {
    max-width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

