@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;600;700&family=Inter:wght@300;400;600;800;900&display=swap');

:root {
  --bg-deep: #0d0f12;
  --bg-card: rgba(22, 24, 29, 0.75);
  --bg-glass: rgba(13, 15, 18, 0.75);
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --neon-green: #39ff14;
  --neon-green-dim: rgba(57, 255, 20, 0.08);
  --bdr-color: rgba(255, 255, 255, 0.08);
  --bdr-neon: rgba(57, 255, 20, 0.4);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glass-blur: blur(24px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-green);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  background-image: 
    radial-gradient(circle at top, rgba(57, 255, 20, 0.03) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@keyframes gradientShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.float-anim {
  animation: float 6s ease-in-out infinite;
}

h1 {
  font-size: clamp(3rem, 6.5vw, 6rem);
  letter-spacing: -0.05em;
  font-weight: 800;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 0%, #b3b3b3 60%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShimmer 5s ease infinite, float 6s ease-in-out infinite;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

p {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
}

/* Base Layouts */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 8rem 0; position: relative; }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-8 { margin-top: 3rem; }

/* Buttons */
.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--neon-green);
  background: rgba(57, 255, 20, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: inset 0 1px 0 rgba(57,255,20, 0.1), 0 0 15px rgba(57, 255, 20, 0.05);
}

.brand-logo {
  height: 40px;
  width: 45px;
  object-fit: contain;
  transform: scale(4.5);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.15));
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.logo-link:hover .brand-logo {
  filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.6));
  transform: scale(4.8);
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 100px;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--neon-green);
  color: #000;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4), 0 5px 20px rgba(57, 255, 20, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4), 0 5px 30px rgba(57, 255, 20, 0.45);
  background-color: #4aff28;
}

.btn-secondary {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--bdr-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: var(--neon-green);
  box-shadow: inset 0 0 15px var(--neon-green-dim);
}

/* Header & Logo */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--bdr-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 45px;
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.2));
  transition: all 0.4s ease;
}

.logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px var(--neon-green));
}

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a:not(.btn) { font-weight: 600; font-size: 0.95rem; color: #ccc; }
.nav-links a:not(.btn):hover { color: var(--neon-green); }
.nav-links a.btn-primary { color: #000 !important; }
.hamburger { display: none; }

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}
#particles-js {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}
.hero .btn-group {
  display: flex; gap: 1.5rem; justify-content: center; margin-top: 3rem;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 1.5rem;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr-color);
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 30px rgba(0, 0, 0, 0.6);
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, var(--neon-green-dim), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--bdr-neon);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 40px rgba(0,0,0,0.8);
}
.bento-card:hover::before { opacity: 1; }
.bento-icon {
  font-size: 2rem; color: var(--neon-green); margin-bottom: 1.5rem;
}
.bento-span-2 { grid-column: span 2; }
.bento-span-4 { grid-column: span 4; }
.bento-span-row-2 { grid-row: span 2; }

/* Standard Utilities (Internal Pages) */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; align-items: center; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--bdr-color);
  padding: 3rem;
  border-radius: 20px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 30px rgba(0, 0, 0, 0.6);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(57, 255, 20, 0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  pointer-events: none;
}

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

.card:hover {
  border-color: var(--bdr-neon);
  transform: translateY(-5px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 40px rgba(57, 255, 20, 0.15);
}
.card-icon { font-size: 2.5rem; color: var(--neon-green); margin-bottom: 1.5rem; }

.proof-card {
  background: linear-gradient(145deg, #0a0a0a 0%, #000 100%);
  border: 1px solid var(--bdr-color);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s;
}
.proof-card:hover { border-color: var(--neon-green); }
.proof-metric { font-size: 3rem; font-family: var(--font-heading); font-weight: 700; color: var(--neon-green); margin-bottom: 0.5rem; }

/* Problem Section (Emotional Contrast) */
.problem-section {
  background: #020202;
  border-top: 1px solid var(--bdr-color);
  border-bottom: 1px solid var(--bdr-color);
}
.problem-text {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--text-muted);
  line-height: 1.3;
}
.problem-text span {
  color: #fff;
  transition: color 0.3s;
}
.problem-text span:hover { color: #ff3333; }

/* Dynamic Counters */
.counter-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.counter-box {
  background: var(--bg-card);
  border: 1px solid var(--bdr-color);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
}
.counter-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-bottom: 0.5rem;
}

/* System Flow (Solution) */
.flow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 4rem;
}
.flow-line {
  position: absolute;
  top: 50%; left: 0; width: 100%; height: 2px;
  background: var(--bdr-color);
  z-index: 1;
}
.flow-step {
  position: relative;
  z-index: 2;
  background: var(--bg-deep);
  padding: 1.5rem 2.5rem;
  border: 1px solid var(--bdr-color);
  border-radius: 50px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all 0.3s ease;
}
.flow-step:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 20px var(--neon-green-dim);
}

/* Sticky WhatsApp */
.sticky-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #000;
  border: 1px solid var(--neon-green);
  width: 65px;
  height: 65px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  font-size: 1.8rem;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.whatsapp-icon { display: flex; align-items: center; justify-content: center; }
.whatsapp-text {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-left: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-whatsapp:hover {
  width: 220px;
  padding: 0 20px;
  justify-content: flex-start;
  background: var(--neon-green);
  color: #000;
}
.sticky-whatsapp:hover .whatsapp-text {
  max-width: 150px;
  opacity: 1;
  margin-left: 12px;
}

/* Footer Focus */
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4rem;
}
footer {
  border-top: 1px solid var(--bdr-color);
  padding: 6rem 0 2rem;
  background: #000;
}
.footer-bottom {
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid var(--bdr-color);
  text-align: center; color: var(--text-muted);
}
.footer-contact a { color: var(--text-muted); display: block; margin-bottom: 0.5rem; }
.footer-contact a:hover { color: var(--neon-green); }

/* Animation Utility Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Interactive Pipeline Infographic (Index) */
.pipeline-section { position: relative; padding: 6rem 0; background: radial-gradient(circle at center, rgba(57, 255, 20, 0.04), transparent 70%); }
.pipeline-wrapper { position: relative; max-width: 1000px; margin: 0 auto; }
.pipeline-layout { position: relative; padding: 4rem 0; }
.pipeline-track { position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 100%; height: 6px; background: var(--bdr-color); border-radius: 6px; z-index: 1; }
.pipeline-laser { position: absolute; top: 50%; left: 0; transform: translateY(-50%); height: 6px; background: var(--neon-green); box-shadow: 0 0 15px var(--neon-green); width: 0%; transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1); z-index: 2; border-radius: 6px; }
.pipeline-nodes { display: flex; justify-content: space-between; position: relative; z-index: 3; }
.pipeline-node { width: 65px; height: 65px; border-radius: 50%; background: var(--bg-deep); border: 2px solid var(--bdr-color); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1.5rem; font-family: var(--font-heading); font-weight: 800; cursor: pointer; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.pipeline-node:hover, .pipeline-node.active { border-color: var(--neon-green); color: #000; background: var(--neon-green); box-shadow: 0 0 25px rgba(57, 255, 20, 0.4); transform: scale(1.15); }
.pipeline-labels { display: flex; justify-content: space-between; margin-top: 1.5rem; text-align: center; }
.pipeline-label { flex: 1; font-weight: 600; color: var(--text-muted); transition: color 0.4s; cursor: pointer; font-size: 1.1rem; }
.pipeline-label:hover, .pipeline-label.active { color: var(--text-main); }

.pipeline-display-box { background: var(--bg-card); border: 1px solid var(--bdr-color); padding: 3rem; border-radius: 20px; margin-top: 2rem; min-height: 220px; backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 40px rgba(0,0,0,0.8); transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); position: relative; z-index: 4; }
.pipeline-display-box h3 { color: var(--neon-green); font-size: 2.2rem; margin-bottom: 1rem; letter-spacing: -1px; }

/* The Funnel System (Studio) */
.funnel-wrapper { display: flex; gap: 3rem; align-items: center; padding-top: 2rem; }
.funnel-graphic { flex: 1; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.funnel-layer { background: var(--bg-card); border: 1px solid var(--bdr-color); height: 70px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); cursor: pointer; border-radius: 12px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 8px 20px rgba(0,0,0,0.6); position: relative; z-index: 1;}
.funnel-layer:nth-child(1) { width: 100%; top: 0; }
.funnel-layer:nth-child(2) { width: 85%; top: 0; }
.funnel-layer:nth-child(3) { width: 70%; top: 0; }
.funnel-layer:nth-child(4) { width: 55%; top: 0; }
.funnel-layer:hover, .funnel-layer.active { background: var(--neon-green-dim); border-color: var(--bdr-neon); color: var(--neon-green); transform: scale(1.05); box-shadow: 0 10px 40px rgba(57, 255, 20, 0.2); z-index: 2; border-width: 2px; }

/* The Hex Grid (Lab) */
.hex-wrapper { display: flex; gap: 3rem; align-items: center; justify-content: center; padding: 2rem 0; margin-bottom: 2rem;}
.hex-graphic { flex: 1; position: relative; height: 350px; display: flex; align-items: center; justify-content: center; }
.hex-node { width: 90px; height: 104px; background: var(--bg-card); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); display: flex; align-items: center; justify-content: center; position: absolute; color: var(--text-muted); font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; cursor: pointer; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); z-index: 2; }
.hex-node::before { content: ''; position: absolute; inset: 2px; background: var(--bg-deep); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); z-index: -1; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.hex-node.center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 110px; height: 127px; color: var(--neon-green); background: var(--bdr-neon); cursor: default; }
.hex-node[data-index="0"] { top: 15%; left: 50%; transform: translate(-50%, -50%); } 
.hex-node[data-index="1"] { top: 50%; left: 15%; transform: translate(-50%, -50%); } 
.hex-node[data-index="2"] { top: 50%; left: 85%; transform: translate(-50%, -50%); } 
.hex-node[data-index="3"] { top: 85%; left: 50%; transform: translate(-50%, -50%); } 
.hex-node:not(.center):hover::before, .hex-node.active::before { background: var(--neon-green-dim); }
.hex-node:not(.center):hover, .hex-node.active { background: var(--neon-green); color: var(--text-main); transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 30px rgba(57, 255, 20, 0.4); }
.hex-path { position: absolute; background: var(--bdr-color); z-index: 1; transition: background 0.4s; }
.p-0 { width: 4px; height: 35%; top: 15%; left: 50%; transform: translateX(-50%); }
.p-1 { height: 4px; width: 35%; top: 50%; left: 15%; transform: translateY(-50%); }
.p-2 { height: 4px; width: 35%; top: 50%; right: 15%; transform: translateY(-50%); }
.p-3 { width: 4px; height: 35%; bottom: 15%; left: 50%; transform: translateX(-50%); }
.hex-path.active { background: var(--neon-green); box-shadow: 0 0 15px var(--neon-green); }

/* The Zig-Zag Roadmap (Contact) */
.zigzag-wrapper { max-width: 800px; margin: 0 auto; padding: 2rem 0; position: relative; }
.zigzag-line { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 2px; border-left: 2px dashed var(--bdr-color); z-index: 1; }
.zig-node { display: flex; align-items: center; gap: 2rem; position: relative; margin-bottom: 4rem; z-index: 2; cursor: pointer; opacity: 0.5; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.zig-node:hover, .zig-node.active { opacity: 1; }
.zig-node:nth-child(even) { flex-direction: row-reverse; text-align: right; }
.zig-empty { flex: 1; display: flex; justify-content: center; } 
.zig-point { width: 30px; height: 30px; background: var(--bg-deep); border: 2px solid var(--text-muted); border-radius: 50%; box-shadow: 0 0 10px rgba(0,0,0,0.5); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); position: absolute; left: 50%; transform: translateX(-50%); }
.zig-content { flex: 1; background: var(--bg-card); padding: 2.5rem; border-radius: 20px; border: 1px solid var(--bdr-color); transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 8px 30px rgba(0,0,0,0.6); }
.zig-node.active .zig-point { background: var(--neon-green); border-color: var(--neon-green); box-shadow: 0 0 20px var(--neon-green); transform: translateX(-50%) scale(1.4); }
.zig-node.active .zig-content { border-color: var(--bdr-neon); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(57, 255, 20, 0.15); }
.zig-content h3 { color: var(--text-main); transition: color 0.4s; margin-bottom: 0.5rem; }
.zig-node.active h3 { color: var(--neon-green); }

/* Responsive Overrides */
@media (max-width: 992px) {
  .bento-span-2, .bento-span-4, .bento-span-row-2 {
    grid-column: span 4;
    grid-row: auto;
  }
  .bento-card { min-height: 250px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .counter-grid, .footer-grid { grid-template-columns: 1fr; }
  .flow-container { flex-direction: column; gap: 2rem; }
  .flow-line { width: 2px; height: 100%; left: 50%; top: 0; }
  
  .nav-links { 
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-deep);
    padding: 2rem;
    border-bottom: 1px solid var(--bdr-color);
  }
  
  .pipeline-layout {
    display: flex;
    height: 350px;
    padding: 0;
    margin-bottom: 3rem;
  }
  .pipeline-track {
    width: 6px; height: 100%; top: 0; left: 30px; transform: none;
  }
  .pipeline-laser {
    width: 6px; height: 0%; top: 0; left: 30px; transform: none;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .pipeline-nodes {
    flex-direction: column; height: 100%; padding: 0; align-items: flex-start;
  }
  .pipeline-labels {
    flex-direction: column; margin-top: 0; margin-left: 1.5rem; text-align: left; height: 100%; justify-content: space-between;
    padding: 20px 0;
  }
  .nav-links.active {
    display: flex;
  }
  
  .hamburger { 
    display: flex; 
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none; 
    border: none; 
    cursor: pointer;
    z-index: 1001;
  }
  .hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Core Pipeline Mobile Override */
  .pipeline-layout { padding: 2rem 0; display: flex; height: 450px; justify-content: center; position: relative; }
  .pipeline-nodes { flex-direction: column; justify-content: space-between; height: 100%; z-index: 3; }
  .pipeline-track { width: 6px; height: 100%; top: 0; left: 50%; transform: translateX(-50%); z-index: 1; }
  .pipeline-laser { width: 6px !important; height: 0%; top: 0; left: 50%; transform: translateX(-50%) !important; z-index: 2; transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
  .pipeline-labels { display: none; }
  .pipeline-display-box { padding: 2.5rem 1.5rem; min-height: 250px; margin-top: 1rem; }

  /* Infographic Mobile Overrides */
  .funnel-wrapper, .hex-wrapper { flex-direction: column; }
  .hex-graphic { height: 250px; }
  .zigzag-line { left: 25px; }
  .zig-node, .zig-node:nth-child(even) { flex-direction: row; text-align: left; margin-bottom: 2rem; gap: 1rem;}
  .zig-empty { display: none; }
  .zig-point { left: 25px; width: 20px; height: 20px; border-width: 1px; }
  .zig-node.active .zig-point { transform: translateX(-50%) scale(1.2); }
  .zig-content { padding: 1.5rem; margin-left: 50px; }
}
