/* ============================================
   ME GROWTH BRIDGE — Master Styles
   ============================================ */

/* ── CSS Variables ── */
:root {
  --bg: #0B0F19;
  --bg-card: rgba(17, 24, 39, 0.6);
  --text: #F8FAFC;
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(255,184,0,0.25);
  --muted: #94A3B8;
  --muted-light: #64748B;
  --cyan: #00F0FF;
  --cyan-dim: rgba(0,240,255,0.12);
  --gold: #FFB800;
  --gold-dim: rgba(255,184,0,0.12);
  --font-display: 'Space Grotesk', sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--muted-light);
  border-radius: 3px;
}

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.10s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.20s; }
.reveal-delay-5 { transition-delay: 0.25s; }
.reveal-delay-6 { transition-delay: 0.30s; }
.reveal-delay-7 { transition-delay: 0.35s; }
.reveal-delay-8 { transition-delay: 0.40s; }

/* ── Container ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(11,15,25,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.site-logo {
  width: auto;
  height: 52px;
  display: block;
  object-fit: contain;
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--cyan), #00c2cc) !important;
  color: var(--bg) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,240,255,0.28) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(11,15,25,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--text);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, var(--cyan) 0%, rgba(0,240,255,0.25) 60%, transparent 100%);
  top: -220px;
  right: -120px;
  animation-delay: 0s;
}

.orb-2 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, var(--gold) 0%, rgba(255,184,0,0.22) 60%, transparent 100%);
  bottom: -160px;
  left: -120px;
  animation-delay: -6s;
}

.orb-3 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #8B5CF6 0%, rgba(139,92,246,0.2) 60%, transparent 100%);
  top: 40%;
  left: 32%;
  opacity: 0.35;
  animation-delay: -12s;
}

.orb-4 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #38BDF8 0%, rgba(56,189,248,0.18) 60%, transparent 100%);
  top: 12%;
  left: 8%;
  opacity: 0.3;
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(28px,-28px) scale(1.08); }
  66%       { transform: translate(-18px,18px) scale(0.94); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  z-index: 1;
}

/* Slow moving diagonal sheen across the hero */
.hero-sheen {
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(0,240,255,0.05) 46%,
    rgba(255,184,0,0.07) 50%,
    rgba(0,240,255,0.05) 54%,
    transparent 62%
  );
  background-size: 300% 300%;
  animation: sheen-drift 14s ease-in-out infinite;
}

@keyframes sheen-drift {
  0%, 100% { background-position: 0% 0%; }
  50%      { background-position: 100% 100%; }
}

/* ── Network background (subtle tech / connecting-the-world) ── */
.net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

.net-g {
  animation: net-drift 36s ease-in-out infinite;
  transform-origin: center;
}

.net-links line {
  stroke: rgba(0,240,255,0.22);
  stroke-width: 1.2;
  stroke-dasharray: 4 6;
  animation: net-dash-flow 14s linear infinite;
}

.net-nodes circle {
  fill: #00F0FF;
  opacity: 0.5;
  animation: node-pulse 4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.net-nodes circle:nth-child(2) { animation-delay: 0.4s; }
.net-nodes circle:nth-child(3) { animation-delay: 0.8s; }
.net-nodes circle:nth-child(4) { animation-delay: 1.2s; }
.net-nodes circle:nth-child(5) { animation-delay: 1.6s; }
.net-nodes circle:nth-child(6) { animation-delay: 2.0s; }
.net-nodes circle:nth-child(7) { animation-delay: 2.4s; }
.net-nodes circle:nth-child(8) { animation-delay: 2.8s; }
.net-nodes circle:nth-child(9) { animation-delay: 3.2s; }
.net-nodes circle:nth-child(10) { animation-delay: 3.6s; }
.net-nodes circle:nth-child(11) { animation-delay: 4.0s; }

.net-ping circle {
  animation: ping 3.6s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.net-ping circle:nth-child(2) { animation-delay: 0.9s; }
.net-ping circle:nth-child(3) { animation-delay: 1.8s; }
.net-ping circle:nth-child(4) { animation-delay: 2.7s; }
.net-ping circle:nth-child(5) { animation-delay: 1.2s; }

@keyframes net-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -14px) scale(1.05); }
}

@keyframes net-dash-flow {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -40; }
}

@keyframes node-pulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.9; }
}

@keyframes ping {
  0%   { transform: scale(0.4); opacity: 0.7; }
  80%, 100% { transform: scale(2.4); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

/* Hero entrance stagger (fades each child up in sequence) */
.hero-content > .reveal-child {
  opacity: 0;
  transform: translateY(26px);
}
.hero-content.reveal.active > .reveal-child {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.hero-content.reveal.active > .reveal-child:nth-child(1) { transition-delay: 0.10s; }
.hero-content.reveal.active > .reveal-child:nth-child(2) { transition-delay: 0.20s; }
.hero-content.reveal.active > .reveal-child:nth-child(3) { transition-delay: 0.30s; }
.hero-content.reveal.active > .reveal-child:nth-child(4) { transition-delay: 0.40s; }
.hero-content.reveal.active > .reveal-child:nth-child(5) { transition-delay: 0.50s; }
.hero-content.reveal.active > .reveal-child:nth-child(6) { transition-delay: 0.60s; }
.hero-content.reveal.active > .reveal-child:nth-child(7) { transition-delay: 0.70s; }

/* Hero-to-next-section dissolve */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(11,15,25,0) 0%, rgba(11,15,25,0.85) 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--cyan);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero h1 .line-gold {
  background: linear-gradient(100deg, #FFB800 0%, #FFD040 45%, #F59E0B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  position: relative;
}

.hero h1 .line-cyan {
  color: var(--cyan);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.hero-avail {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.6rem;
  background: linear-gradient(135deg, var(--gold), #e0a800);
  color: #0B0F19;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,184,0,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.6rem;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 0.88rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

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

.lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lang-pill {
  padding: 0.3rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--muted);
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), color var(--transition);
}

.lang-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.selected-work {
  margin-top: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.selected-work:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.selected-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}

.selected-companies {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.selected-companies .divider {
  color: var(--gold);
  font-size: 0.55rem;
  opacity: 0.7;
}

.company-name {
  transition: color var(--transition);
}

.selected-work:hover .company-name {
  color: var(--gold);
}

/* ============================================
   CREDIBILITY STRIP
   ============================================ */

.credibility {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cred-card {
  background: var(--bg-card);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: background var(--transition);
}

.cred-card:hover {
  background: rgba(255,184,0,0.06);
}

.cred-icon {
  color: var(--gold);
  font-size: 0.55rem;
  opacity: 0.7;
}

.cred-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
  word-break: break-word;
  overflow-wrap: break-word;
}

.cred-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.3;
}

/* ── Count-up shimmer ── */
.cred-number.counted {
  background: linear-gradient(135deg, var(--cyan), #8B5CF6, var(--cyan));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 3s ease-in-out infinite;
}

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

/* ============================================
   SECTION SHARED
   ============================================ */

section {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border);
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 580px;
  line-height: 1.7;
}

.ampersand {
  color: var(--gold);
  font-style: italic;
}

/* ── Shimmer Sweep (premium card hover) ── */
.shimmer-sweep {
  position: relative;
  overflow: hidden;
}

.shimmer-sweep::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.04) 45%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 55%,
    transparent 70%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  z-index: 1;
  pointer-events: none;
  transition: background-position 0.8s ease;
}

.shimmer-sweep:hover::before {
  background-position: -50% 0;
}

/* ============================================
   VOICE AI PROJECT
   ============================================ */

.voice-ai-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  overflow: hidden;
  position: relative;
}

.voice-ai-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,240,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,184,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.tag-gold {
  background: var(--gold-dim) !important;
  border-color: rgba(255,184,0,0.25) !important;
  color: var(--gold) !important;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.25rem 0.75rem;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #c4b5fd;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  animation: pulse 2s infinite;
}

.vai-pipeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 1.5rem 1rem;
  background: rgba(7,10,19,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.pipeline-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--muted-light);
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.pipe-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(17,24,39,0.8);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  z-index: 2;
}

.pipe-node:hover {
  transform: translateY(-1px);
}

.pipe-node__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.pipe-node__icon svg {
  width: 20px;
  height: 20px;
}

.pipe-node__label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.pipe-node__sub {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
}

.pipe-node--user {
  border-color: rgba(255,255,255,0.1);
}
.pipe-node--user .pipe-node__icon {
  background: rgba(255,255,255,0.06);
  color: var(--muted);
}

.pipe-node--vapi {
  border-color: rgba(0,240,255,0.25);
}
.pipe-node--vapi .pipe-node__icon {
  background: rgba(0,240,255,0.1);
  color: var(--cyan);
}
.pipe-node--vapi .pipe-node__icon svg { stroke: var(--cyan); }

.pipe-node--webhook {
  border-color: rgba(139,92,246,0.3);
}
.pipe-node--webhook .pipe-node__icon {
  background: rgba(139,92,246,0.1);
}
.pipe-node--webhook .pipe-node__icon svg { stroke: #a78bfa; }

.pipe-node--make {
  border-color: rgba(255,184,0,0.35);
  box-shadow: 0 0 20px rgba(255,184,0,0.08);
  animation: glow-pulse-make 3s ease-in-out infinite;
}
.pipe-node--make .pipe-node__icon {
  background: rgba(255,184,0,0.12);
}
.pipe-node--make .pipe-node__icon svg { stroke: var(--gold); }

@keyframes glow-pulse-make {
  0%, 100% {
    box-shadow: 0 0 12px rgba(255,184,0,0.06), 0 0 30px rgba(255,184,0,0.03);
    border-color: rgba(255,184,0,0.3);
  }
  50% {
    box-shadow: 0 0 24px rgba(255,184,0,0.15), 0 0 50px rgba(255,184,0,0.06);
    border-color: rgba(255,184,0,0.5);
  }
}

/* ── Connector arrows ── */
.pipe-arrow {
  width: 2px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pipe-arrow__line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  position: relative;
  overflow: hidden;
}

.pipe-arrow__pulse {
  position: absolute;
  top: -8px;
  left: 0;
  width: 2px;
  height: 8px;
  background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
  animation: flow-down 1.8s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes flow-down {
  0%   { top: -8px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ── Branch (Make.com → 4 destinations) ── */
.pipe-branch {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.pipe-branch__stem {
  width: 2px;
  height: 16px;
  background: linear-gradient(to bottom, rgba(255,184,0,0.4), rgba(255,184,0,0.15));
  position: relative;
  overflow: hidden;
}

.pipe-branch__stem::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 2px;
  height: 8px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: flow-down-gold 1.8s ease-in-out 1.2s infinite;
  border-radius: 2px;
}

@keyframes flow-down-gold {
  0%   { top: -8px; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.pipe-branch__rail {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 12.5%,
    rgba(255,184,0,0.3) 12.5%,
    rgba(255,184,0,0.3) 87.5%,
    transparent 87.5%
  );
  position: relative;
}

.pipe-branch__rail::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 8px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: sweep-rail 2.4s ease-in-out 1.2s infinite;
  border-radius: 2px;
}

@keyframes sweep-rail {
  0%   { left: -8px; opacity: 0; }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.pipe-destinations {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 0;
}

.pipe-dest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.pipe-dest__drop {
  width: 2px;
  height: 14px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.pipe-dest__drop::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  width: 2px;
  height: 6px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4), transparent);
  animation: flow-down 1.8s ease-in-out infinite;
  border-radius: 2px;
}

.pipe-dest--hubspot .pipe-dest__drop::after {
  background: linear-gradient(to bottom, transparent, #ff7a59, transparent);
}
.pipe-dest--calendar .pipe-dest__drop::after {
  background: linear-gradient(to bottom, transparent, #4285f4, transparent);
}
.pipe-dest--twilio .pipe-dest__drop::after {
  background: linear-gradient(to bottom, transparent, #f22f46, transparent);
}
.pipe-dest--gmail .pipe-dest__drop::after {
  background: linear-gradient(to bottom, transparent, #34a853, transparent);
}

.pipe-dest__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(17,24,39,0.9);
  width: 100%;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  line-height: 1.2;
}

.pipe-dest__node svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pipe-dest__node:hover {
  transform: translateY(-2px) !important;
}

.pipe-dest--hubspot .pipe-dest__node {
  border-color: rgba(255,122,89,0.2);
}
.pipe-dest--hubspot .pipe-dest__node svg { stroke: #ff7a59; }
.pipe-dest--hubspot .pipe-dest__node:hover {
  border-color: rgba(255,122,89,0.5);
  box-shadow: 0 4px 16px rgba(255,122,89,0.12);
  transform: translateY(-2px);
  color: var(--text);
}

.pipe-dest--calendar .pipe-dest__node {
  border-color: rgba(66,133,244,0.2);
}
.pipe-dest--calendar .pipe-dest__node svg { stroke: #4285f4; }
.pipe-dest--calendar .pipe-dest__node:hover {
  border-color: rgba(66,133,244,0.5);
  box-shadow: 0 4px 16px rgba(66,133,244,0.12);
  transform: translateY(-2px);
  color: var(--text);
}

.pipe-dest--twilio .pipe-dest__node {
  border-color: rgba(242,47,70,0.2);
}
.pipe-dest--twilio .pipe-dest__node svg { stroke: #f22f46; }
.pipe-dest--twilio .pipe-dest__node:hover {
  border-color: rgba(242,47,70,0.5);
  box-shadow: 0 4px 16px rgba(242,47,70,0.12);
  transform: translateY(-2px);
  color: var(--text);
}

.pipe-dest--gmail .pipe-dest__node {
  border-color: rgba(52,168,83,0.2);
}
.pipe-dest--gmail .pipe-dest__node svg { stroke: #34a853; }
.pipe-dest--gmail .pipe-dest__node:hover {
  border-color: rgba(52,168,83,0.5);
  box-shadow: 0 4px 16px rgba(52,168,83,0.12);
  transform: translateY(-2px);
  color: var(--text);
}

/* ============================================
   FEATURED PROJECT
   ============================================ */

.project-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,184,0,0.3);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4);
}

.project-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/7;
  background: #0d1017;
}

.project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.project-card:hover .project-thumbnail img {
  transform: scale(1.03);
  opacity: 0.9;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,184,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(255,184,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button svg {
  width: 28px;
  height: 28px;
  fill: #0B0F19;
  margin-left: 3px;
}

.project-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 16px 40px rgba(255,184,0,0.4);
}

.project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(8,10,18,0.88), transparent);
  display: flex;
  justify-content: flex-end;
}

.overlay-label {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.project-meta-wrap {
  padding: 2rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.tag {
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,240,255,0.18);
  color: #67c8ff;
  font-size: 0.76rem;
  font-weight: 600;
}

.project-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 780px;
  margin-bottom: 1.75rem;
}

.project-facts {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.fact {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fact-label {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.fact-value {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.7;
}

.project-note {
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.75;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: gap var(--transition);
}

.project-link svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition);
}

.project-card:hover .project-link {
  gap: 0.75rem;
}
.project-card:hover .project-link svg {
  transform: translate(3px, -3px);
}

/* ============================================
   EXECUTION GRID
   ============================================ */

.exec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.exec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  transition: border-color var(--transition), transform var(--transition);
}

.exec-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.exec-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.exec-icon {
  color: var(--gold);
  font-size: 0.55rem;
  opacity: 0.8;
}

.exec-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.exec-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.exec-list li {
  font-size: 0.87rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.exec-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

/* ============================================
   FOCUS
   ============================================ */

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.focus-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(12px);
  transition: border-color var(--transition), transform var(--transition);
}

.focus-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.focus-bar {
  width: 3px;
  height: 26px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.8;
}

.focus-item span {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ============================================
   PHILOSOPHY
   ============================================ */

.philosophy-inner {
  max-width: 700px;
}

.philosophy-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--muted);
  line-height: 1.8;
  border-left: 2px solid var(--gold);
  padding-left: 1.75rem;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  text-align: center;
  margin: -1.25rem auto 1rem;
}

.contact-email {
  text-align: center;
  margin: 0.75rem auto 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-email a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-email a:hover {
  color: #ffd040;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,184,0,0.05);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-light);
  font-size: 0.88rem;
}

textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: var(--gold);
  color: #0B0F19;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-submit:hover {
  background: #ffd040;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,184,0,0.28);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.btn-submit:hover .btn-arrow {
  transform: translateX(3px);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.3);
  color: #4ade80;
}

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  background: rgba(231,76,60,0.12);
  border: 1px solid rgba(231,76,60,0.3);
  color: #f87171;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 3rem 0;
  text-align: center;
}

.footer-logo{
    height:40px;
    width:auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-brand img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand .accent {
  color: var(--gold);
}

.footer-note {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.65;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted-light);
}

/* ============================================
   VIDEO MODAL
   ============================================ */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

.video-modal.is-open {
  display: flex;
  animation: fade-in 0.25s ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.video-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16/9;
}

.video-content iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  border: none;
}

.video-close {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 2.25rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
}

.video-close:hover {
  color: var(--gold);
  transform: scale(1.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .voice-ai-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .vai-pipeline {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

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

  .exec-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    padding: 1.75rem 1.25rem;
  }

  .project-thumbnail {
    aspect-ratio: 16/9;
  }

  .play-button {
    width: 58px;
    height: 58px;
  }

  .project-meta-wrap {
    padding: 1.25rem;
  }

  .selected-work {
    width: 100%;
    text-align: center;
    align-items: center;
    padding: 1.25rem 1rem;
  }

  .selected-companies {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .pipe-destinations {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .pipe-dest__drop {
    height: 10px;
  }

  .pipe-dest__node {
    padding: 0.85rem 0.5rem;
    font-size: 0.72rem;
  }

  .pipe-branch__rail {
    height: 1.5px;
  }

  .pipe-branch__stem {
    height: 12px;
  }

  .pipe-arrow {
    height: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    text-align: center;
    justify-content: center;
  }

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

  .nav-brand {
    font-size: 0.95rem;
  }

  .site-logo {
    height: 44px;
  }

  .nav-brand svg,
  .nav-brand img {
    width: 28px;
    height: 28px;
  }

  .voice-ai-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .pipe-destinations {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .pipe-dest__drop {
    height: 8px;
  }

  .pipe-branch__rail {
    height: 1px;
  }

  .pipe-branch__stem {
    height: 10px;
  }

  .pipe-arrow {
    height: 14px;
  }

  .pipe-dest__node {
    padding: 0.65rem 0.4rem;
    font-size: 0.65rem;
  }

  .pipe-dest__node svg {
    width: 16px;
    height: 16px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
