/* ============================================
   MERIDIAN & COMPANY — PREMIUM CSS
   ============================================ */

/* --- TOKENS --- */
:root {
  --clr-bg: #09090f;
  --clr-bg-2: #0d0d18;
  --clr-surface: #111120;
  --clr-surface-2: #16162a;
  --clr-border: rgba(255, 255, 255, 0.07);
  --clr-border-hover: rgba(255, 255, 255, 0.15);
  --clr-gold: #c9a84c;
  --clr-gold-light: #e8c97a;
  --clr-gold-dim: rgba(201, 168, 76, 0.15);
  --clr-blue: #4a8ef8;
  --clr-blue-dim: rgba(74, 142, 248, 0.12);
  --clr-teal: #2dd4bf;
  --clr-white: #f5f5f7;
  --clr-white-60: rgba(245, 245, 247, 0.6);
  --clr-white-40: rgba(245, 245, 247, 0.4);
  --clr-white-20: rgba(245, 245, 247, 0.12);
  --nav-h: 110px;
  --section-pad: clamp(80px, 12vw, 160px);
  --container-w: 1240px;
  --border-r: 16px;
  --border-r-sm: 8px;
  --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--clr-bg);
  color: var(--clr-white);
  overflow-x: hidden;
  cursor: none;
}

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

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

button {
  cursor: none;
  border: none;
  background: none;
}

/* --- CUSTOM CURSOR --- */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--clr-gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover, button:hover) .cursor-follower {
  width: 52px;
  height: 52px;
  border-color: var(--clr-gold);
}

@media (hover: none) and (pointer: coarse) {
  body, button {
    cursor: auto;
  }
  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* --- LOADER --- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.loader-m {
  color: var(--clr-gold);
}

.loader-rest {
  color: var(--clr-white-60);
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--clr-white-20);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  border-radius: 2px;
  width: 0;
  animation: loaderFill 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderFill {
  to {
    width: 100%;
  }
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding-top: 18px;
  transition: background var(--trans-med), box-shadow var(--trans-med), backdrop-filter var(--trans-med), padding var(--trans-med), height var(--trans-med);
}

.nav.scrolled {
  padding-top: 4px;
  height: 90px;
  background: rgba(9, 9, 15, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--clr-border);
}

.nav-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0.05em;
  line-height: 1;
  vertical-align: middle;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
}

.logo-text em {
  font-style: normal;
  font-weight: 400;
  color: var(--clr-white-60);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-white-60);
  border-radius: var(--border-r-sm);
  transition: color var(--trans-fast), background var(--trans-fast);
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 1.5px;
  background: var(--clr-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover {
  color: var(--clr-white);
  background: rgba(201, 168, 76, 0.08);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.caret {
  font-size: 0.65em;
  opacity: 0.6;
  margin-top: 1px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: rgba(17, 17, 32, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--clr-border);
  border-radius: var(--border-r);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--trans-fast), visibility var(--trans-fast), transform var(--trans-fast);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--clr-white-60);
  border-radius: var(--border-r-sm);
  transition: color var(--trans-fast), background var(--trans-fast);
}

.dropdown-item:hover {
  color: var(--clr-white);
  background: var(--clr-white-20);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.btn-search {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--clr-white-60);
  transition: color var(--trans-fast), background var(--trans-fast);
}

.btn-search:hover {
  color: var(--clr-white);
  background: var(--clr-white-20);
}

.nav-cta {
  padding: 13px 30px;
  background: var(--clr-gold);
  color: #0a0a0f;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  transition: background var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.45);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Search overlay */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(9, 9, 15, 0.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--clr-border);
  padding: 24px 32px;
  display: none;
}

.search-overlay.active {
  display: flex;
}

.search-container {
  max-width: var(--container-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 16px;
}

.search-input {
  flex: 1;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--border-r-sm);
  padding: 14px 20px;
  color: var(--clr-white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--trans-fast);
}

.search-input:focus {
  border-color: var(--clr-gold);
}

.search-input::placeholder {
  color: var(--clr-white-40);
}

.search-close {
  color: var(--clr-white-60);
  font-size: 1.2rem;
  padding: 0 8px;
  transition: color var(--trans-fast);
}

.search-close:hover {
  color: var(--clr-white);
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--clr-gold);
  color: #0a0a0f;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  transition: background var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.4);
}

.btn-primary.full-width {
  width: 100%;
  justify-content: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  color: var(--clr-white-60);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  transition: color var(--trans-fast), border-color var(--trans-fast), transform var(--trans-fast);
}

.btn-ghost:hover {
  color: var(--clr-white);
  border-color: var(--clr-white-60);
  transform: translateY(-2px);
}

.btn-ghost svg {
  transition: transform var(--trans-fast);
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  color: var(--clr-white);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  transition: all var(--trans-fast);
}

.btn-ghost-dark:hover {
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

/* --- SECTION UTILITIES --- */
.section-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: var(--section-pad) 32px;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 20px;
}

.section-eyebrow.light {
  color: rgba(201, 168, 76, 0.7);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--clr-gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-white-60);
  line-height: 1.7;
  max-width: 580px;
}

.section-header {
  margin-bottom: 72px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* --- HERO --- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(74, 142, 248, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 90% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #07071a 0%, #09090f 100%);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 142, 248, 0.15), transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 70%);
  bottom: 0;
  left: -100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.08), transparent 70%);
  top: 50%;
  left: 40%;
  animation-delay: -5s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 20px) scale(0.97);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: clamp(80px, 7vw, 160px) 32px clamp(60px, 8vw, 100px);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* --- HERO LEFT --- */
.hero-left {
  display: flex;
  flex-direction: column;
}

/* --- HERO RIGHT --- */
.hero-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding-top: 20px;
  opacity: 0;
  animation: heroReveal 1s 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-visual-wrap {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
}

/* Rings */
.hv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hv-ring-outer {
  width: 460px;
  height: 460px;
  border-color: rgba(201, 168, 76, 0.15);
  animation: ringSpinCW 20s linear infinite;
}

.hv-ring-mid {
  width: 370px;
  height: 370px;
  border-color: rgba(74, 142, 248, 0.2);
  animation: ringSpinCCW 14s linear infinite;
}

.hv-ring-inner {
  width: 280px;
  height: 280px;
  border-color: rgba(45, 212, 191, 0.15);
  animation: ringSpinCW 9s linear infinite;
}

@keyframes ringSpinCW {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ringSpinCCW {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/* Central image frame */
.hv-img-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.4);
  box-shadow:
    0 0 0 8px rgba(201, 168, 76, 0.06),
    0 0 60px rgba(201, 168, 76, 0.2),
    0 0 120px rgba(74, 142, 248, 0.15);
  animation: imgFloat 6s ease-in-out infinite;
  z-index: 3;
}

.hv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) saturate(1.2);
}

.hv-img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes imgFloat {

  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.06), 0 0 60px rgba(201, 168, 76, 0.2), 0 0 120px rgba(74, 142, 248, 0.15);
    transform: translate(-50%, -50%) translateY(0px);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(201, 168, 76, 0.08), 0 0 80px rgba(201, 168, 76, 0.3), 0 0 150px rgba(74, 142, 248, 0.2);
    transform: translate(-50%, -50%) translateY(-12px);
  }
}

/* Orbiting dots */
.hv-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform-origin: 0 0;
  pointer-events: none;
}

.hv-orbit-1 {
  width: 460px;
  height: 460px;
  margin-left: -230px;
  margin-top: -230px;
  animation: orbitSpin 12s linear infinite;
}

.hv-orbit-2 {
  width: 370px;
  height: 370px;
  margin-left: -185px;
  margin-top: -185px;
  animation: orbitSpin 8s linear infinite reverse;
}

.hv-orbit-3 {
  width: 280px;
  height: 280px;
  margin-left: -140px;
  margin-top: -140px;
  animation: orbitSpin 6s linear infinite;
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.hv-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-gold);
  top: -5px;
  left: 50%;
  margin-left: -5px;
  box-shadow: 0 0 12px var(--clr-gold), 0 0 24px rgba(201, 168, 76, 0.5);
}

.hv-dot-blue {
  background: var(--clr-blue);
  box-shadow: 0 0 12px var(--clr-blue), 0 0 24px rgba(74, 142, 248, 0.5);
}

.hv-dot-teal {
  background: var(--clr-teal);
  box-shadow: 0 0 12px var(--clr-teal), 0 0 24px rgba(45, 212, 191, 0.5);
}

/* Floating metric cards */
.hv-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(17, 17, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 5;
  white-space: nowrap;
}

.hv-card-1 {
  top: 8%;
  left: -10%;
  animation: cardFloat 5s 0s ease-in-out infinite;
  border-color: rgba(201, 168, 76, 0.25);
}

.hv-card-2 {
  bottom: 18%;
  left: -8%;
  animation: cardFloat 6s 1.5s ease-in-out infinite;
  border-color: rgba(74, 142, 248, 0.25);
}

.hv-card-3 {
  top: 20%;
  right: -8%;
  animation: cardFloat 5.5s 0.8s ease-in-out infinite;
  border-color: rgba(45, 212, 191, 0.25);
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hv-card-icon {
  font-size: 1.3rem;
}

.hv-card-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.hv-card-lbl {
  font-size: 0.7rem;
  color: var(--clr-white-40);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--clr-gold);
}

.eyebrow-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 28px;
  max-width: 800px;
}

.hero-accent {
  font-size: clamp(1.6rem, 3.8vw, 3.2rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--clr-gold);
  font-style: italic;
}

.headline-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.headline-line:nth-child(1) {
  animation-delay: 2s;
}

.headline-line:nth-child(2) {
  animation-delay: 2.15s;
}

.hero-subtext {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--clr-white-60);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s 2.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--clr-border);
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s 2.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-direction: row;
  flex-wrap: wrap;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.stat-label {
  width: 100%;
  font-size: 0.78rem;
  color: var(--clr-white-40);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--clr-border);
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: heroReveal 0.8s 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--clr-white-40);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--clr-border);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 1px;
  height: 20px;
  background: var(--clr-gold);
  position: absolute;
  top: -20px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    top: -20px;
  }

  100% {
    top: 60px;
  }
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- MARQUEE --- */
.marquee-section {
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-surface);
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  flex-shrink: 0;
  padding-right: 32px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-white-40);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-dot {
  color: var(--clr-gold);
  font-size: 0.5em;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- FEATURED INSIGHT --- */
.featured-insight {
  background: var(--clr-bg-2);
  padding: var(--section-pad) 0;
}

.fi-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fi-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 24px;
}

.fi-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

.fi-body {
  font-size: 1.05rem;
  color: var(--clr-white-60);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.fi-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 2px;
  transition: gap var(--trans-fast), border-color var(--trans-fast);
}

.fi-link:hover {
  gap: 16px;
  border-color: var(--clr-gold);
}

.fi-image-wrap {
  position: relative;
  border-radius: var(--border-r);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.fi-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.fi-image-wrap:hover .fi-image {
  transform: scale(1.04);
}

.fi-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 9, 15, 0.3) 0%, transparent 60%);
}

.fi-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--clr-gold);
  color: #0a0a0f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

/* --- CAPABILITIES --- */
.capabilities {
  background: var(--clr-bg);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  border-radius: var(--border-r);
  overflow: hidden;
}

.cap-card {
  background: var(--clr-bg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--trans-med);
}

.cap-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-gold-dim), var(--clr-blue-dim));
  opacity: 0;
  transition: opacity var(--trans-med);
}

.cap-card:hover {
  background: var(--clr-surface);
}

.cap-card:hover::before {
  opacity: 1;
}

.cap-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--border-r-sm);
  color: var(--clr-gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: background var(--trans-fast), border-color var(--trans-fast);
}

.cap-card:hover .cap-icon {
  background: rgba(201, 168, 76, 0.25);
  border-color: rgba(201, 168, 76, 0.4);
}

.cap-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cap-desc {
  font-size: 0.9rem;
  color: var(--clr-white-60);
  line-height: 1.65;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.cap-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-gold);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--trans-fast);
}

.cap-link span {
  transition: transform var(--trans-fast);
}

.cap-card:hover .cap-link span {
  transform: translateX(4px);
}

/* --- INSIGHTS --- */
.insights {
  background: var(--clr-surface);
}

.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.insights-view-all {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 2px;
  transition: border-color var(--trans-fast);
  white-space: nowrap;
}

.insights-view-all:hover {
  border-color: var(--clr-gold);
}

.insights-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 24px;
}

.insight-card--large {
  grid-row: span 2;
}

.insight-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--border-r);
  overflow: hidden;
  transition: transform var(--trans-med), border-color var(--trans-med), box-shadow var(--trans-med);
}

.insight-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border-hover);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.insight-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.insight-card--large .insight-img-wrap {
  aspect-ratio: 4/3;
}

.insight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.insight-card:hover .insight-img {
  transform: scale(1.05);
}

.insight-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 15, 0.5) 0%, transparent 60%);
}

.insight-content {
  padding: 28px;
}

.insight-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.insight-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color var(--trans-fast);
}

.insight-card--large .insight-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.insight-card:hover .insight-title {
  color: var(--clr-gold-light);
}

.insight-excerpt {
  font-size: 0.9rem;
  color: var(--clr-white-60);
  line-height: 1.65;
  margin-bottom: 20px;
}

.insight-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--clr-white-40);
}

.insight-meta span::before {
  content: attr(data-sep);
}

.insight-read::before {
  content: '·  ';
}

/* --- PODCAST --- */
.podcast {
  background: linear-gradient(135deg, #0a0a1f 0%, #111128 100%);
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.podcast::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 142, 248, 0.08), transparent 70%);
  border-radius: 50%;
}

.podcast-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.podcast-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

.podcast-desc {
  font-size: 1rem;
  color: var(--clr-white-60);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 400px;
}

.podcast-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.podcast-platforms {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.podcast-platforms>span {
  font-size: 0.78rem;
  color: var(--clr-white-40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.platforms {
  display: flex;
  gap: 8px;
}

.platform-badge {
  padding: 6px 16px;
  background: var(--clr-white-20);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-white-60);
  transition: all var(--trans-fast);
}

.platform-badge:hover {
  background: var(--clr-white-20);
  border-color: var(--clr-border-hover);
  color: var(--clr-white);
}

.podcast-episodes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.episode-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--border-r);
  padding: 24px;
  display: flex;
  gap: 20px;
  transition: background var(--trans-fast), border-color var(--trans-fast);
  cursor: pointer;
}

.episode-card.active,
.episode-card:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
}

.ep-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-gold);
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 2px;
}

.ep-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}

.ep-guest {
  font-size: 0.8rem;
  color: var(--clr-white-40);
  margin-bottom: 14px;
}

.ep-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ep-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), transform var(--trans-fast);
  cursor: pointer;
}

.ep-play:hover {
  background: var(--clr-gold-light);
  transform: scale(1.1);
}

.ep-duration {
  font-size: 0.8rem;
  color: var(--clr-white-40);
}

/* --- IMPACT BAND --- */
.impact-band {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.ib-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ib-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 15, 0.97) 0%, rgba(9, 9, 15, 0.8) 50%, rgba(9, 9, 15, 0.3) 100%);
}

.ib-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: var(--section-pad) 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ib-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
}

.ib-title em {
  font-style: italic;
  color: var(--clr-gold);
}

.ib-body {
  font-size: 1.05rem;
  color: var(--clr-white-60);
  line-height: 1.75;
  margin-bottom: 36px;
}

.ib-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* --- INDUSTRIES --- */
.industries {
  background: var(--clr-bg-2);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.industry-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--border-r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--trans-med);
  position: relative;
  overflow: hidden;
}

.industry-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transition: transform var(--trans-med);
  transform-origin: left;
}

.industry-item:hover {
  background: var(--clr-surface-2);
  border-color: var(--clr-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.industry-item:hover::before {
  transform: scaleX(1);
}

.ind-icon {
  font-size: 2rem;
}

.ind-name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--clr-white-60);
  transition: color var(--trans-fast);
}

.industry-item:hover .ind-name {
  color: var(--clr-white);
}

/* --- CAREERS --- */
.careers {
  background: linear-gradient(135deg, #0c0c22 0%, var(--clr-bg) 100%);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.careers::after {
  content: '"';
  position: absolute;
  bottom: -80px;
  right: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 40rem;
  color: rgba(201, 168, 76, 0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.careers-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.careers-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 600px;
}

.careers-desc {
  font-size: 1.05rem;
  color: var(--clr-white-60);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.careers-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.careers-perks {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
}

.perk-icon {
  font-size: 1.4rem;
}

.perk span {
  font-size: 0.88rem;
  color: var(--clr-white-60);
}

/* --- CONTACT --- */
.contact {
  background: var(--clr-surface);
  padding: var(--section-pad) 0;
}

.contact-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-title em {
  font-style: italic;
  color: var(--clr-gold);
}

.contact-body {
  font-size: 1rem;
  color: var(--clr-white-60);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--clr-white-60);
}

.contact-item svg {
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-white-60);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--border-r-sm);
  padding: 14px 18px;
  color: var(--clr-white);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--trans-fast), background var(--trans-fast);
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  background: var(--clr-surface);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-white-40);
}

/* --- FOOTER --- */
.footer {
  background: #060610;
  border-top: 1px solid var(--clr-border);
}

.footer-top {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--clr-white-40);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-white-20);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: var(--clr-white-60);
  transition: all var(--trans-fast);
}

.social-link:hover {
  background: var(--clr-gold-dim);
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--clr-gold);
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--clr-white-40);
  transition: color var(--trans-fast);
}

.footer-col a:hover {
  color: var(--clr-white-60);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--clr-white-40);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--clr-white-40);
  transition: color var(--trans-fast);
}

.footer-legal-links a:hover {
  color: var(--clr-white-60);
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fi-container {
    gap: 48px;
  }

  .ib-container {
    grid-template-columns: 1fr;
  }

  .ib-container>.ib-right {
    max-width: 580px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .podcast-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-content {
    gap: 32px;
  }

  .hero-visual-wrap {
    width: 380px;
    height: 380px;
  }

  .hv-ring-outer {
    width: 360px;
    height: 360px;
  }

  .hv-ring-mid {
    width: 290px;
    height: 290px;
  }

  .hv-ring-inner {
    width: 220px;
    height: 220px;
  }

  .hv-orbit-1 {
    width: 360px;
    height: 360px;
    margin-left: -180px;
    margin-top: -180px;
  }

  .hv-orbit-2 {
    width: 290px;
    height: 290px;
    margin-left: -145px;
    margin-top: -145px;
  }

  .hv-orbit-3 {
    width: 220px;
    height: 220px;
    margin-left: -110px;
    margin-top: -110px;
  }

  .hv-img-frame {
    width: 170px;
    height: 170px;
  }

  .hv-card-1 {
    left: -15%;
  }

  .hv-card-2 {
    left: -13%;
  }

  .hv-card-3 {
    right: -13%;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav,
  .nav.scrolled {
    padding-top: 0;
    height: var(--nav-h);
  }

  .nav-links,
  .nav-actions .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(9, 9, 15, 0.97);
    backdrop-filter: blur(24px);
    border-top: 1px solid var(--clr-border);
    padding: 16px;
    gap: 4px;
  }

  .nav-links.mobile-open .nav-link {
    padding: 12px 16px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding-left: 16px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-right {
    display: none;
  }

  .fi-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fi-right {
    order: -1;
  }

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

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

  .insight-card--large {
    grid-row: span 1;
  }

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

  .hero-stats {
    gap: 24px;
  }

  .stat-divider {
    height: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .careers-perks {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============================================
   ADVANCED ANIMATIONS & INTERACTIVE EFFECTS
   ============================================ */

/* Mouse Spotlight Glow on Cards */
.cap-card,
.insight-card,
.industry-item,
.episode-card,
.fi-image-wrap {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s, box-shadow 0.4s;
}

.cap-card::after,
.insight-card::after,
.industry-item::after,
.episode-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(201, 168, 76, 0.15),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.cap-card:hover::after,
.insight-card:hover::after,
.industry-item:hover::after,
.episode-card:hover::after {
  opacity: 1;
}

/* Animated Podcast Equalizer */
.ep-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  margin-left: auto;
}

.ep-equalizer span {
  width: 3px;
  height: 100%;
  background: var(--clr-gold);
  border-radius: 3px;
  transform-origin: bottom;
  animation: eqBounce 1.2s ease-in-out infinite alternate;
  opacity: 0.3;
}

.episode-card.active .ep-equalizer span {
  opacity: 1;
}

.ep-equalizer span:nth-child(1) {
  animation-delay: 0.1s;
  height: 60%;
}

.ep-equalizer span:nth-child(2) {
  animation-delay: 0.3s;
  height: 100%;
}

.ep-equalizer span:nth-child(3) {
  animation-delay: 0.2s;
  height: 40%;
}

.ep-equalizer span:nth-child(4) {
  animation-delay: 0.4s;
  height: 80%;
}

@keyframes eqBounce {
  0% {
    transform: scaleY(0.2);
  }

  100% {
    transform: scaleY(1);
  }
}

/* Button Click Ripple Effect */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Icon Spring & Glow Effect */
.cap-card:hover .cap-icon,
.industry-item:hover .ind-icon {
  transform: scale(1.15) rotate(3deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Glowing text shine animation */
.section-title em {
  background: linear-gradient(135deg, #c9a84c 0%, #f7e096 50%, #c9a84c 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineGlow 4s linear infinite;
}

@keyframes shineGlow {
  to {
    background-position: 200% center;
  }
}

/* Enhanced scroll indicator dot pulse */
.scroll-dot {
  box-shadow: 0 0 10px var(--clr-gold), 0 0 20px var(--clr-gold);
}

/* --- ANIMATED BACK TO TOP BUTTON --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(17, 17, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    visibility 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    background 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--clr-gold);
  color: #09090f;
  border-color: var(--clr-gold-light);
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.45);
}

.back-to-top .btt-arrow {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.back-to-top:hover .btt-arrow {
  transform: translateY(-3px);
  animation: bttBounce 0.8s ease infinite alternate;
}

@keyframes bttBounce {
  0% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}