/* ============================================================
   GROWTH YANTRA — ELITE EDITORIAL LUXURY STYLESHEET
   ============================================================ */

/* -------- LUXURY DESIGN SYSTEM VARIABLES -------- */
:root {
  --obsidian-black: #060608;
  --velvet-navy: #0B0B11;
  --champagne-gold: #DFBA73;
  --gold-metallic: linear-gradient(135deg, #f7e7c4 0%, #dfba73 50%, #b28d46 100%);
  --gold-glow: rgba(223, 186, 115, 0.15);
  
  /* Text colors */
  --text-white: #FAF9F6; /* Premium soft cream white */
  --text-gold: #DFBA73;
  --text-muted: rgba(250, 249, 246, 0.4);
  --text-secondary: rgba(250, 249, 246, 0.7);

  /* Borders & Spacing */
  --border-lux: 1px solid rgba(250, 249, 246, 0.05);
  --border-gold-lux: 1px solid rgba(223, 186, 115, 0.12);
  --smooth-curve: cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1440px;

  /* Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
}

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

html {
  scroll-behavior: smooth;
  background: var(--obsidian-black);
  color: var(--text-white);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  background: var(--obsidian-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  line-height: 1.65;
}

/* -------- UTILITY CLASSES -------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

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

.title-serif {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.title-serif.left { text-align: left; }

.heading-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.heading-desc.left { margin: 0; }

.sub-heading {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 6px;
  margin-bottom: 24px;
}

.sub-heading.gold {
  color: var(--text-gold);
  border-color: rgba(223, 186, 115, 0.3);
}

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

/* -------- PRELOADER -------- */
.preloader {
  position: fixed;
  inset: 0;
  background: #060608;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.preloader-brand {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-white);
  margin-bottom: 4px;
}

.preloader-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--text-gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.preloader-line-wrap {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.preloader-line {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--champagne-gold);
  box-shadow: 0 0 8px var(--champagne-gold);
}

/* -------- AMBIENT LIGHT LEAKS -------- */
.aurora-leak {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.22;
}

.leak-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(223, 186, 115, 0.12) 0%, transparent 70%);
  top: -150px;
  left: -200px;
  animation: aurora-float 12s infinite alternate ease-in-out;
}

.leak-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.08) 0%, transparent 70%);
  top: 45%;
  right: -150px;
  animation: aurora-float-reverse 15s infinite alternate ease-in-out;
}

.leak-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: 20%;
}

@keyframes aurora-float {
  0% { transform: translate(0, 0) scale(1); opacity: 0.22; }
  100% { transform: translate(50px, 30px) scale(1.15); opacity: 0.32; }
}

@keyframes aurora-float-reverse {
  0% { transform: translate(0, 0) scale(1.1); opacity: 0.08; }
  100% { transform: translate(-40px, -20px) scale(0.9); opacity: 0.16; }
}

/* -------- TOP BAR -------- */
.top-bar {
  background: linear-gradient(90deg, #0A0A0C 0%, #15151A 50%, #0A0A0C 100%);
  border-bottom: var(--border-gold-lux);
  padding: 12px 20px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform 0.4s var(--smooth-curve);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
}

.top-bar-dot {
  width: 8px; height: 8px;
  background: var(--champagne-gold);
  border-radius: 50%;
  animation: bar-dot-pulse 2s infinite;
}

@keyframes bar-dot-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

.top-bar p {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-white);
}

.top-bar-link {
  background: var(--gold-metallic);
  color: var(--obsidian-black);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s;
}

.top-bar-link:hover {
  transform: translateY(-1px);
}

.top-bar-close {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
}

/* -------- NAVBAR -------- */
.navbar {
  position: fixed;
  top: 45px; /* below top bar */
  left: 0; right: 0;
  z-index: 999;
  padding: 0 40px;
  background: rgba(8, 8, 10, 0.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(250, 249, 246, 0.03);
  transition: all 0.4s var(--smooth-curve);
}

.navbar.scrolled {
  background: rgba(8, 8, 10, 0.95);
  border-bottom: 1px solid rgba(250, 249, 246, 0.06);
  top: 0;
}

.navbar.top-hidden {
  top: 0;
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand-img {
  height: 38px;
  width: auto;
  border-radius: 50%;
  border: 1px solid rgba(223, 186, 115, 0.2);
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-white);
}

.logo-gold {
  color: var(--text-gold);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--text-gold);
}

.nav-action-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--obsidian-black);
  background: var(--gold-metallic);
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s var(--smooth-curve);
  box-shadow: 0 4px 18px var(--gold-glow);
}

.nav-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(223, 186, 115, 0.35);
}

/* -------- ANIMATED BACKDROP DOCK OVERLAYS -------- */
.animated-grid-overlay {
  position: absolute;
  inset: 0;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(223, 186, 115, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(223, 186, 115, 0.015) 1px, transparent 1px);
  animation: grid-slide-down 35s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes grid-slide-down {
  from { background-position: 0 0; }
  to { background-position: 50px 100px; }
}

/* -------- DUST PARTICLES ENGINE -------- */
.hero-dust-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.gold-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: radial-gradient(circle, #f7e7c4 20%, #dfba73 80%);
  border-radius: 50%;
  box-shadow: 0 0 8px #dfba73;
  animation: dust-float-up 8s infinite linear;
  will-change: transform, opacity;
}

@keyframes dust-float-up {
  0% { transform: translateY(105vh) translateX(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

/* -------- HERO SECTION -------- */
.hero-section {
  position: relative;
  padding: 140px 0 0;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 80% at 70% 20%, #101016, var(--obsidian-black) 70%);
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.luxury-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-gold);
  letter-spacing: 0.18em;
  border-left: 2px solid var(--champagne-gold);
  padding-left: 10px;
  display: inline-block;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.gold-text {
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary-luxury {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-metallic);
  color: var(--obsidian-black);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s var(--smooth-curve);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(223, 186, 115, 0.4);
}

.btn-secondary-luxury {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s var(--smooth-curve);
}

.btn-secondary-luxury:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Accolades Row */
.hero-accolades {
  display: flex;
  gap: 40px;
}

.accolade-item {
  position: relative;
}

.accolade-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-white);
}

.accolade-suffix {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--champagne-gold);
}

.accolade-item p {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.accolade-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
}

/* Hero Right Column */
.hero-image-col {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 5;
}

/* -------- GROWTH FUNNEL SIMULATION WIDGET -------- */
.growth-funnel-simulation {
  background: #09090D;
  border: 1px solid rgba(223, 186, 115, 0.22);
  border-radius: 12px;
  width: 100%;
  max-width: 540px;
  padding: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 35px rgba(223, 186, 115, 0.05);
  position: relative;
  overflow: hidden;
}

.simulation-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: var(--border-lux);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.sim-dots {
  display: flex;
  gap: 6px;
}

.sim-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.sim-dot.d1 { background: #ea4335; }
.sim-dot.d2 { background: #fbbc05; }
.sim-dot.d3 { background: #34a853; }

.sim-status {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-gold);
  letter-spacing: 0.08em;
  animation: glow-blink-status 2.5s infinite alternate;
}

@keyframes glow-blink-status {
  0% { opacity: 0.6; text-shadow: none; }
  100% { opacity: 1; text-shadow: 0 0 8px rgba(223, 186, 115, 0.6); }
}

.funnel-container-svg {
  position: relative;
  width: 100%;
  height: 480px;
}

.funnel-svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* CSS Rotations for SVG dashboard circles */
.rotating-dash-ring {
  transform-origin: 200px 220px;
  animation: core-ring-rotate 18s linear infinite;
}

@keyframes core-ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Funnel simulation badges absolute positions overlay */
.sim-badge {
  position: absolute;
  background: rgba(14, 14, 20, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--border-lux);
  border-radius: 4px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 12;
  transition: all 0.3s;
}

.badge-roas {
  top: 110px; left: 15px;
  color: #34a853;
  border-left: 2.5px solid #34a853;
}

.badge-cpc {
  top: 110px; right: 15px;
  color: #ea4335;
  border-left: 2.5px solid #ea4335;
}

.badge-leads {
  bottom: 160px; right: 20px;
  left: auto;
  transform: none;
  color: var(--text-gold);
  border-left: 2.5px solid var(--champagne-gold);
}

.growth-funnel-simulation:hover .sim-badge {
  border-color: rgba(223, 186, 115, 0.35);
  transform: translateY(-2px);
}

.badge-leads:hover {
  transform: translateY(-2px) !important;
}

/* Funnel Node hover actions */
.funnel-node {
  cursor: pointer;
  transition: transform 0.3s var(--smooth-curve);
}

.funnel-node:hover {
  transform: scale(1.08) translate(var(--x, 0), var(--y, 0));
}

.node-meta:hover { --x: -2px; --y: -2px; }
.node-google:hover { --x: 0px; --y: -2px; }
.node-seo:hover { --x: 0px; --y: -2px; }
.node-geo:hover { --x: 2px; --y: -2px; }

/* Marquee Banner */
.marquee-banner {
  background: rgba(8, 8, 10, 0.5);
  border-top: 1px solid rgba(250, 249, 246, 0.03);
  padding: 24px 0;
  margin-top: 90px;
}

.marquee-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.3);
  text-align: center;
  margin-bottom: 16px;
}

.marquee-track-wrap {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

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

.marquee-item {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.bullet {
  color: var(--text-gold);
  margin-right: 8px;
}

/* -------- SVG ICON RENDERING DEFS -------- */
.pain-icon-lux svg, .pillar-svg-wrap svg {
  display: block;
  overflow: visible;
}

/* ============================================================
   SECTION-SPECIFIC CONTENT ANIMATIONS
   ============================================================ */

/* 1. Cash Leak Drip Animation (Siloed Ad Spend) */
.anim-cash-leak .leak-drip {
  animation: cash-drip-flow 2s infinite linear;
}
.anim-cash-leak .drip-2 {
  animation-delay: 1s;
}

@keyframes cash-drip-flow {
  0% { transform: translateY(0); opacity: 0; }
  15% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* 2. Radar sweep animation (AI Blindspot) */
.anim-radar-scan .radar-line {
  transform-origin: 32px 32px;
  animation: radar-spin 3.5s infinite linear;
}
.anim-radar-scan .radar-sweep {
  transform-origin: 32px 32px;
  animation: sweep-expand 2.2s infinite ease-out;
}

@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sweep-expand {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* 3. Page stall progress bar (Slow templates) */
.anim-page-stall .progress-bar-fill {
  animation: progress-stall-cycle 4s infinite ease-in-out;
}
.anim-page-stall .error-exclamation {
  animation: flash-error 1.5s infinite alternate;
}

@keyframes progress-stall-cycle {
  0% { x2: 16px; }
  40% { x2: 36px; } /* Stall at 70% */
  90% { x2: 36px; }
  100% { x2: 16px; }
}

@keyframes flash-error {
  0% { fill: rgba(234, 67, 53, 0.2); opacity: 0.3; }
  100% { fill: #ea4335; opacity: 1; }
}

/* 4. Crown Authority shimmer */
.anim-authority-glare:hover .crown-shape {
  filter: drop-shadow(0 0 10px rgba(223, 186, 115, 0.8));
}
.anim-authority-glare .crown-glint {
  animation: glint-blink 3s infinite ease-in-out;
}

@keyframes glint-blink {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* 5. SEO Growing Arrow Graph */
.anim-grow-arrow:hover .graph-arrow-path {
  transform: translate(2px, -2px);
  stroke: var(--text-gold);
}
.anim-grow-arrow:hover .graph-arrow-head {
  transform: translate(3px, -3px);
  stroke: var(--text-gold);
}

.graph-arrow-path, .graph-arrow-head {
  transition: transform 0.3s, stroke 0.3s;
}

/* 6. Target Pulse (Performance ads) */
.anim-target-pulse .target-ring-pulse {
  transform-origin: 32px 32px;
  animation: target-ring-loop 2s infinite ease-out;
}

@keyframes target-ring-loop {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* 7. Branch Node Connections (AI GEO) */
.anim-branch-pulse .satellite {
  transform-origin: 32px 30px;
  animation: orbit-satellite 6s infinite linear;
}
.anim-branch-pulse .sat-2 {
  animation-delay: -3s;
}

@keyframes orbit-satellite {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 8. Shield Shimmer Star (ORM) */
.anim-shield-shimmer .shimmer-star {
  transform-origin: 32px 30px;
  animation: star-spin-glow 6s infinite linear;
}

@keyframes star-spin-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 9. Web conversion click ripple */
.anim-click-ripple .ripple-wave {
  transform-origin: 32px 37px;
  animation: ripple-expand 2.2s infinite ease-out;
}

@keyframes ripple-expand {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(12); opacity: 0; }
}

/* 10. Creative Video Clapperboard snap */
.anim-clapper-snap .clapper-lid {
  transform-origin: 10px 24px;
  animation: clapper-snap-cycle 3s infinite ease-in-out;
}

@keyframes clapper-snap-cycle {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-22deg); }
  22% { transform: rotate(0deg); } /* Snaps shut */
}

/* 11. Case Results drawing charts */
.mini-svg-chart path.chart-path-draw {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 2.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-box.draw-active path.chart-path-draw {
  stroke-dashoffset: 0;
}

.mini-svg-chart .chart-endpoint {
  opacity: 0;
  transform: scale(0.5);
  transform-origin: 300px 5px;
  transition: opacity 0.5s 2.2s, transform 0.5s 2.2s;
}

.result-box.draw-active .chart-endpoint {
  opacity: 1;
  transform: scale(1);
}

/* 12. Chaotic vs Orbiting nodes comparison styling */
.anim-chaos-nodes .comp-item {
  animation: items-drift 6s infinite ease-in-out;
}
.anim-chaos-nodes .comp-item:nth-child(2) { animation-delay: -1.5s; }
.anim-chaos-nodes .comp-item:nth-child(3) { animation-delay: -3s; }
.anim-chaos-nodes .comp-item:nth-child(4) { animation-delay: -4.5s; }

@keyframes items-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-3px, -1.5px); }
}

.anim-orbit-nodes .comp-item {
  animation: items-sync-pulse 4s infinite alternate ease-in-out;
}

@keyframes items-sync-pulse {
  0% { transform: translateX(0); }
  100% { transform: translateX(3px); }
}

/* -------- PAIN SECTION -------- */
.pain-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--obsidian-black) 0%, var(--velvet-navy) 100%);
  overflow: hidden;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
  z-index: 5;
}

.pain-card {
  background: rgba(255, 255, 255, 0.015);
  border: var(--border-lux);
  border-radius: 8px;
  padding: 40px 32px;
  transition: all 0.35s var(--smooth-curve);
  position: relative;
}

.pain-icon-lux {
  margin-bottom: 24px;
  display: inline-block;
  filter: drop-shadow(0 0 8px rgba(223, 186, 115, 0.15));
}

.pain-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pain-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(223, 186, 115, 0.25);
  transform: translateY(-4px);
}

/* -------- ABOUT SECTION -------- */
.about-section {
  padding: 120px 0;
  background: var(--velvet-navy);
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-frame {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.frame-border {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(223, 186, 115, 0.25);
  border-radius: 12px;
  pointer-events: none;
}

.about-img {
  width: 100%;
  border-radius: 6px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-gold);
  margin-bottom: 24px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.about-matrix-item h4 {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  color: var(--text-white);
  line-height: 1.2;
}

.about-matrix-item p {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* -------- SERVICES MATRIX -------- */
.services-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--velvet-navy) 0%, var(--obsidian-black) 100%);
  overflow: hidden;
}

.services-blueprint {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
  z-index: 5;
}

.blueprint-card {
  background: rgba(255, 255, 255, 0.015);
  border: var(--border-lux);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.4s var(--smooth-curve);
  position: relative;
}

.blueprint-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.pillar-svg-wrap {
  filter: drop-shadow(0 0 10px rgba(223, 186, 115, 0.2));
}

.blueprint-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.blueprint-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.blueprint-bullets {
  list-style: none;
  margin-bottom: 24px;
}

.blueprint-bullets li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blueprint-bullets li::before {
  content: '✦';
  color: var(--text-gold);
}

.pillar-outcome {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-gold);
  background: rgba(223, 186, 115, 0.05);
  border: var(--border-gold-lux);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.blueprint-card:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 186, 115, 0.35);
  box-shadow: 0 20px 45px rgba(223, 186, 115, 0.04);
}

.blueprint-action-row {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.btn-whatsapp-flat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #FAF9F6;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-whatsapp-flat:hover {
  background: #25d366;
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

/* -------- CASE RESULTS -------- */
.results-section {
  position: relative;
  padding: 120px 0;
  background: var(--obsidian-black);
  overflow: hidden;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
  z-index: 5;
}

.result-box {
  background: rgba(255, 255, 255, 0.015);
  border: var(--border-lux);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.result-head {
  margin-bottom: 20px;
}

.result-industry {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.result-box h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.result-number {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 500;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 8px;
}

.result-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.result-chart {
  margin-top: auto;
  overflow: visible;
}

.mini-svg-chart path {
  filter: drop-shadow(0 0 8px rgba(223, 186, 115, 0.35));
}

/* -------- COMPARISON SECTION -------- */
.versus-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--obsidian-black) 0%, #060608 100%);
  overflow: hidden;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: var(--border-lux);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 64px;
  position: relative;
  z-index: 5;
}

.comp-col {
  padding: 56px;
}

.comp-col h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 36px;
}

.comp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.comp-item:last-child { margin-bottom: 0; }

.bullet-cross, .bullet-check {
  font-weight: 700;
  font-size: 11px;
}

.bullet-cross { color: #ea4335; margin-right: 4px; }
.bullet-check { color: #34a853; margin-right: 4px; }

.comp-silo {
  background: rgba(255, 255, 255, 0.005);
  color: rgba(250, 249, 246, 0.6);
}

.comp-yantra {
  background: rgba(223, 186, 115, 0.015);
  border-left: 1px solid rgba(223, 186, 115, 0.08);
  position: relative;
}

.comp-yantra h3 { color: var(--text-gold); }

.yantra-light-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(223, 186, 115, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.comp-vs-orb {
  width: 56px;
  background: #060608;
  border-left: var(--border-lux);
  border-right: var(--border-lux);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* -------- TESTIMONIALS -------- */
.testimonials-section {
  position: relative;
  padding: 120px 0;
  background: var(--velvet-navy);
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
  z-index: 5;
}

.test-card {
  background: rgba(255, 255, 255, 0.015);
  border: var(--border-lux);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s;
}

.test-card:hover {
  border-color: rgba(223, 186, 115, 0.25);
  transform: translateY(-4px);
}

.featured-test {
  border-color: rgba(223, 186, 115, 0.25);
  background: linear-gradient(145deg, rgba(223, 186, 115, 0.02) 0%, rgba(11, 11, 17, 0.9) 100%);
}

.test-stars {
  color: var(--text-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.test-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-letter {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--champagne-gold);
  color: var(--obsidian-black);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-white);
}

.test-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* -------- FUNNEL SECTION -------- */
.funnel-section {
  position: relative;
  padding: 120px 0;
  background: #050507;
  overflow: hidden;
}

.funnel-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.funnel-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.funnel-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.check-c {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(223, 186, 115, 0.1);
  color: var(--text-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}

.funnel-urgency {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 18px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.pulse-marker {
  width: 6px; height: 6px;
  background: var(--text-gold);
  border-radius: 50%;
  animation: marker-pulse 2s infinite;
}

@keyframes marker-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.funnel-urgency p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.funnel-direct-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.btn-phone-direct, .btn-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  padding: 16px 24px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--smooth-curve);
  width: fit-content;
}

.btn-phone-direct {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.btn-phone-direct:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-whatsapp-direct {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #FAF9F6;
}

.btn-whatsapp-direct:hover {
  background: #25d366;
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

/* -------- DIRECT LEAD BOX -------- */
.direct-lead-box {
  background: linear-gradient(145deg, #09090C 0%, #040406 100%);
  border: 1px solid rgba(223, 186, 115, 0.18);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(223, 186, 115, 0.05);
  position: relative;
}

.form-pane-header {
  margin-bottom: 32px;
  border-bottom: var(--border-lux);
  padding-bottom: 16px;
}

.form-pane-header h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.form-pane-header p {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.direct-lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-item label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-item input, .form-item select {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--text-white);
  outline: none;
  font-family: var(--font-sans);
  transition: all 0.3s;
}

.form-item select option {
  background: #09090C;
  color: var(--text-white);
}

.form-item input:focus, .form-item select:focus {
  border-color: var(--champagne-gold);
  background: rgba(223, 186, 115, 0.04);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px;
}

.form-checkbox input {
  margin-top: 4px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.4;
}

.btn-direct-submit {
  background: var(--gold-metallic);
  color: var(--obsidian-black);
  border: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 4px 15px var(--gold-glow);
  width: 100%;
}

.btn-direct-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(223, 186, 115, 0.3);
}

/* Success state inside direct form */
.direct-success-state {
  text-align: center;
  padding: 40px 0;
}

.direct-success-state h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.direct-success-state p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* -------- FOOTER -------- */
.footer {
  background: #040405;
  border-top: var(--border-lux);
  padding: 64px 0 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 36px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--text-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.copy-text {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom-link {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-link:hover {
  color: var(--text-gold);
}

/* -------- NEW HIGH-CONVERTING MOBILE DOCK -------- */
.mobile-action-dock {
  display: none; /* JS toggles on mobile scroll fold */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(6, 6, 8, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1.5px solid rgba(223, 186, 115, 0.25);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.9);
}

.dock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.2s;
  box-sizing: border-box;
}

.dock-btn:active {
  transform: scale(0.97);
}

.dock-btn.call-action {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-white);
}

.dock-btn.whatsapp-action {
  background: #25d366;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* -------- ANIMATION STATES -------- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--smooth-curve), transform 0.8s var(--smooth-curve);
}

[data-animate="fadeLeft"] {
  transform: translateX(36px);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0);
}

/* -------- RESPONSIVE DESIGN -------- */
@media (max-width: 1100px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-col { justify-content: center; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .services-blueprint { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comp-vs-orb { display: none; }
  .comp-yantra { border-left: none; border-top: 1px solid rgba(223, 186, 115, 0.1); }
  .funnel-container { grid-template-columns: 1fr; gap: 48px; }
  .about-container { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .navbar { top: 0; }
  .top-bar { display: none !important; }
  body { padding-bottom: 74px; } /* Space for persistent action dock */
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .hero-headline { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .pain-grid { grid-template-columns: 1fr; }
  .services-blueprint { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .direct-lead-box { padding: 32px 24px; }
  .hero-accolades { flex-direction: column; gap: 20px; }
  
  /* Scale down the SVG simulation centerpiece inside mobile viewport */
  .growth-funnel-simulation {
    padding: 16px 12px;
  }
  .funnel-container-svg {
    height: 310px;
  }
  .core-logo-positioner {
    width: 58px; height: 58px;
    top: 220px;
  }
  .sim-badge {
    font-size: 8.5px;
    padding: 4px 8px;
  }
  .badge-roas { top: 110px; left: 10px; }
  .badge-cpc { top: 110px; right: 10px; }
  .badge-leads { bottom: 105px; right: 10px; left: auto; transform: none; }
}

/* -------- THE GROWTH ENGINE (FOUNDER'S VENTURE) SECTION -------- */
.founder-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--obsidian-black) 0%, var(--velvet-navy) 100%);
  overflow: hidden;
}

.founder-grid-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.founder-card {
  background: rgba(255, 255, 255, 0.012);
  border: var(--border-lux);
  border-radius: 16px;
  padding: 64px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(223, 186, 115, 0.02) inset;
}

.founder-card-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  background: #ffffff; /* Premium white card layout for branding */
  border: 1px solid rgba(223, 186, 115, 0.25);
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  width: fit-content;
}

.founder-card-logo {
  height: 38px;
  width: auto;
}

.founder-card-logo-tagline {
  display: flex;
  flex-direction: column;
  color: #060608;
}

.founder-card-logo-tagline strong {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.founder-card-logo-tagline span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  color: rgba(6, 6, 8, 0.6);
  font-weight: 700;
}

.card-badge-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
  border-left: 2px solid var(--champagne-gold);
  padding-left: 10px;
}

.card-main-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-white);
  line-height: 1.25;
}

.card-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.founder-pills-row {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 36px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.founder-pills-row::-webkit-scrollbar {
  display: none;
}

.founder-pill {
  background: rgba(255, 255, 255, 0.025);
  border: var(--border-lux);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  white-space: nowrap;
}

.pill-dot {
  width: 5px; height: 5px;
  background: var(--text-gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--text-gold);
}

.founder-card-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-founder {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-founder:hover {
  border-color: rgba(223, 186, 115, 0.35);
  background: rgba(223, 186, 115, 0.04);
  transform: translateY(-2px);
}

/* -------- INTERACTIVE ORBITAL SYSTEM GRAPH -------- */
.founder-graph-wrapper {
  position: relative;
  width: 100%;
  height: 920px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.mandala-bg-geometry {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  z-index: 1;
  pointer-events: none;
}

.mandala-svg {
  display: block;
  width: 100%; height: 100%;
}

.rotating-stars-group {
  transform-origin: 250px 250px;
  animation: core-ring-rotate 45s linear infinite;
}

.counter-rotating-ring {
  transform-origin: 250px 250px;
  animation: core-ring-rotate 25s linear infinite reverse;
}

.orbit-path {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(223, 186, 115, 0.06);
  transform: translate(-50%, -50%);
  top: 50%; left: 50%;
  pointer-events: none;
  z-index: 2;
}

.path-1 { width: 380px; height: 380px; }
.path-2 { width: 520px; height: 520px; }
.path-3 { width: 660px; height: 660px; }

.founder-image-frame {
  position: relative;
  width: 540px;
  height: 800px;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.founder-real-portrait {
  width: auto;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 15px 35px rgba(223, 186, 115, 0.18));
}

.portrait-shadow-shroud {
  position: absolute;
  bottom: 0; left: -20px; right: -20px;
  height: 90px;
  background: linear-gradient(to top, #0A0B10 15%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

/* CSS Math positions orbital badges dynamically */
.orbit-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) translate(calc(var(--r) * cos(var(--deg))), calc(var(--r) * sin(var(--deg))));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(9, 9, 12, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 6;
  transition: all 0.35s var(--smooth-curve);
  white-space: nowrap;
  cursor: pointer;
}

.orbit-dot {
  width: 6px; height: 6px;
  background: var(--champagne-gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--champagne-gold);
  display: inline-block;
  transition: all 0.3s;
}

.label-txt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.orbit-label:hover {
  border-color: rgba(223, 186, 115, 0.35);
  background: rgba(223, 186, 115, 0.05);
  transform: translate(-50%, -50%) translate(calc(var(--r) * cos(var(--deg))), calc(var(--r) * sin(var(--deg)))) scale(1.05);
  box-shadow: 0 8px 24px rgba(223, 186, 115, 0.2);
}

.orbit-label:hover .label-txt {
  color: var(--text-white);
}

.orbit-label:hover .orbit-dot {
  background: #00CBFF;
  box-shadow: 0 0 10px #00CBFF;
}

/* Orbit stack adjustments */
@media (max-width: 1000px) {
  .founder-grid-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .founder-left-col, .founder-right-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .founder-card {
    max-width: 620px;
  }
  .founder-card-logo-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .founder-card-ctas {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .founder-section {
    padding: 80px 0;
  }
  .founder-card {
    padding: 32px 20px;
  }
  .founder-graph-wrapper {
    transform: scale(0.74);
    height: 390px;
    margin-top: -30px;
    margin-bottom: -30px;
  }
}

@media (max-width: 440px) {
  .founder-graph-wrapper {
    transform: scale(0.58);
    height: 310px;
    margin-top: -60px;
    margin-bottom: -60px;
  }
}
