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

:root {
  --font: 'Figtree', sans-serif;
  --bg: #ffffff;
  --bg-alt: #f4f6fb;
  --bg-card: #ffffff;
  --bg-glass: rgba(255,255,255,0.7);
  --text: #0c1222;
  --text-sub: #5a6478;
  --text-muted: #8a94a6;
  --accent: #4361EE;
  --accent-light: #eef1ff;
  --accent-glow: rgba(67,97,238,0.15);
  --accent2: #7C3AED;
  --accent3: #E84393;
  --border: rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-card: 0 4px 20px rgba(67,97,238,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --nav-bg: rgba(255,255,255,0.85);
  --grid-color: rgba(67,97,238,0.07);
  --hero-gradient: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(67,97,238,0.06) 0%, transparent 70%);
  --cube-face: rgba(67,97,238,0.06);
  --cube-border: rgba(67,97,238,0.18);
  --float-card-bg: rgba(255,255,255,0.92);
  --pill-bg: rgba(67,97,238,0.08);
  --pill-text: #4361EE;
}

.dark {
  --bg: #0a0e1a;
  --bg-alt: #0f1424;
  --bg-card: #141b2d;
  --bg-glass: rgba(20,27,45,0.8);
  --text: #e8ecf4;
  --text-sub: #8a94a6;
  --text-muted: #5a6478;
  --accent: #6382FF;
  --accent-light: rgba(99,130,255,0.1);
  --accent-glow: rgba(99,130,255,0.12);
  --accent2: #A78BFA;
  --accent3: #F472B6;
  --border: rgba(255,255,255,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.25);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.35);
  --shadow-card: 0 4px 20px rgba(99,130,255,0.08);
  --nav-bg: rgba(10,14,26,0.88);
  --grid-color: rgba(99,130,255,0.05);
  --hero-gradient: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(99,130,255,0.08) 0%, transparent 70%);
  --cube-face: rgba(99,130,255,0.06);
  --cube-border: rgba(99,130,255,0.2);
  --float-card-bg: rgba(20,27,45,0.92);
  --pill-bg: rgba(99,130,255,0.12);
  --pill-text: #6382FF;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.logo { display: flex; align-items: center; gap: 0; text-decoration: none; cursor: pointer; }
.logo-mark { height: 40px; display: flex; align-items: center; justify-content: center; }
.logo-mark svg { height: 100%; width: auto; }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-link {
  text-decoration: none; color: var(--text-sub);
  font-size: 14px; font-weight: 500; padding: 8px 16px;
  border-radius: 50px; transition: all 0.25s ease;
  cursor: pointer; border: none; background: none;
  font-family: var(--font);
}
.nav-link:hover { color: var(--accent); background: var(--accent-light); }
.nav-link.active { color: var(--accent); background: var(--accent-light); font-weight: 600; }
/* Theme-colored hover & active per tab */
.nav-link[data-view="strategy"]:hover,
.nav-link[data-view="strategy"].active { color: var(--accent3); background: rgba(232,67,147,0.1); }
.nav-link[data-view="products"]:hover,
.nav-link[data-view="products"].active { color: var(--accent2); background: rgba(124,58,237,0.1); }
.dark .nav-link[data-view="strategy"]:hover,
.dark .nav-link[data-view="strategy"].active { color: var(--accent3); background: rgba(244,114,182,0.12); }
.dark .nav-link[data-view="products"]:hover,
.dark .nav-link[data-view="products"].active { color: var(--accent2); background: rgba(167,139,250,0.12); }
.nav-cta {
  background: var(--accent); color: #fff;
  padding: 10px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(67,97,238,0.25);
  font-family: var(--font);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(67,97,238,0.35); }

.mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: 16px 24px; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu button {
  text-decoration: none; color: var(--text-sub);
  font-size: 16px; font-weight: 500; padding: 12px 16px;
  background: none; border: none; text-align: left;
  border-radius: var(--radius-sm); cursor: pointer;
  font-family: var(--font); transition: all 0.2s;
}
.mobile-menu button:hover, .mobile-menu button.active { color: var(--accent); background: var(--accent-light); }
.mobile-menu button[data-view="strategy"]:hover,
.mobile-menu button[data-view="strategy"].active { color: var(--accent3); background: rgba(232,67,147,0.1); }
.mobile-menu button[data-view="products"]:hover,
.mobile-menu button[data-view="products"].active { color: var(--accent2); background: rgba(124,58,237,0.1); }

/* ===== VIEWS ===== */
.view { display: none; animation: viewFadeIn 0.4s ease; }
.view.active { display: block; }
@keyframes viewFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ===== HERO ===== */
.hero {
  min-height: auto; padding: 120px 24px 40px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--hero-gradient);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(var(--grid-color) 1px, transparent 1px);
  background-size: 32px 32px; opacity: 0.8;
}
.hero-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero-content { max-width: 540px; }
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900; line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 20px; animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 17px; color: var(--text-sub); line-height: 1.7;
  margin-bottom: 36px; max-width: 460px; animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(67,97,238,0.3);
  font-family: var(--font);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(67,97,238,0.4); }
.btn-secondary {
  background: transparent; color: var(--text);
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: 1.5px solid var(--border);
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s ease; font-family: var(--font);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline {
  background: transparent; color: var(--accent);
  padding: 10px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--accent); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.3s ease; font-family: var(--font);
  text-decoration: none;
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ===== 3D HERO SCENE ===== */
.hero-scene {
  position: relative; width: 100%; height: 460px;
  perspective: 1200px; animation: fadeIn 1s ease 0.4s both;
}
.scene-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%; filter: blur(40px); animation: pulse 4s ease-in-out infinite;
}
/* Hero Robot Y mascot */
.hero-robot-wrap {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-38%);
  width: 180px; height: 210px;
}
.hero-robot-wrap svg { width: 100%; height: 100%; }
/* Bobbing float */
.hero-robot-wrap { animation: robotBob 3s ease-in-out infinite; }
@keyframes robotBob { 0%,100%{transform:translate(-50%,-38%) translateY(0)} 50%{transform:translate(-50%,-38%) translateY(-10px)} }
/* Running legs */
.robot-leg-l { animation: legSwingL 0.6s ease-in-out infinite; transform-origin: 36px 88px; }
.robot-leg-r { animation: legSwingR 0.6s ease-in-out infinite; transform-origin: 48px 88px; }
@keyframes legSwingL { 0%,100%{transform:rotate(-12deg)} 50%{transform:rotate(12deg)} }
@keyframes legSwingR { 0%,100%{transform:rotate(12deg)} 50%{transform:rotate(-12deg)} }
/* Eye pupils tracking */
.robot-pupil-l { animation: eyeLook 3.5s ease-in-out infinite; }
.robot-pupil-r { animation: eyeLook 3.5s ease-in-out infinite; }
@keyframes eyeLook {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(2px,0); }
  40% { transform: translate(2px,1px); }
  60% { transform: translate(-2px,0); }
  80% { transform: translate(-1px,-1px); }
}
/* Antenna glow pulse */
.robot-antenna-tip { animation: antennaPulse 2s ease-in-out infinite; }
@keyframes antennaPulse {
  0%,100% { filter: drop-shadow(0 0 3px #06B6D4); }
  50% { filter: drop-shadow(0 0 10px #06B6D4) drop-shadow(0 0 20px rgba(6,182,212,0.4)); }
}
/* Arm wave */
.robot-arm-r { animation: armWave 2.5s ease-in-out infinite; transform-origin: 56px 44px; }
@keyframes armWave { 0%,70%,100%{transform:rotate(0)} 80%{transform:rotate(-8deg)} 90%{transform:rotate(4deg)} }

.float-card {
  position: absolute; padding: 14px 18px;
  background: var(--float-card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; z-index: 5;
}
.float-card .fc-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; flex-shrink: 0;
}
.float-card.fc-1 { top: 8%; left: 5%; animation: floatA 6s ease-in-out infinite; }
.float-card.fc-2 { top: 15%; right: 2%; animation: floatB 7s ease-in-out infinite; }
.float-card.fc-3 { bottom: 18%; left: 0%; animation: floatC 5.5s ease-in-out infinite; }
.float-card.fc-4 { bottom: 8%; right: 5%; animation: floatA 6.5s ease-in-out 1s infinite; }
.float-card.fc-5 { top: 38%; left: -5%; animation: floatB 5s ease-in-out 0.5s infinite; }
.float-card.fc-6 { top: 45%; right: -3%; animation: floatC 6s ease-in-out 0.8s infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes floatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.orbit-ring {
  position: absolute; top: 50%; left: 50%;
  border: 1px dashed var(--cube-border); border-radius: 50%;
  transform: translate(-50%,-50%) rotateX(60deg);
}
.orbit-ring.r1 { width: 280px; height: 280px; animation: spinOrbit 20s linear infinite; }
.orbit-ring.r2 { width: 380px; height: 380px; animation: spinOrbit 28s linear infinite reverse; }
.orbit-dot {
  position: absolute; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent-glow);
}
.orbit-ring.r1 .orbit-dot { top: -4px; left: 50%; transform: translateX(-50%); }
.orbit-ring.r2 .orbit-dot { bottom: -4px; left: 50%; transform: translateX(-50%); }
@keyframes spinOrbit { 0%{transform:translate(-50%,-50%) rotateX(60deg) rotateZ(0)} 100%{transform:translate(-50%,-50%) rotateX(60deg) rotateZ(360deg)} }

/* ===== HERO TECH ORBIT ===== */
.hero-tech-orbit {
  position: absolute; top: 50%; left: 50%;
  width: 500px; height: 500px;
  transform: translate(-50%,-50%) rotateX(55deg);
  transform-style: preserve-3d;
  z-index: 3;
  animation: heroOrbitSpin 22s linear infinite;
}
.hero-tech-orbit::before {
  content: ''; position: absolute; inset: 0;
  border: 1.5px dashed var(--cube-border); border-radius: 50%;
}
@keyframes heroOrbitSpin {
  from { transform: translate(-50%,-50%) rotateX(55deg) rotateZ(0deg); }
  to { transform: translate(-50%,-50%) rotateX(55deg) rotateZ(360deg); }
}
.htl {
  position: absolute; width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  border-radius: 50%; background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  animation: htlCounter 22s linear infinite;
}
@keyframes htlCounter {
  from { transform: rotateZ(0deg) rotateX(-55deg); }
  to { transform: rotateZ(-360deg) rotateX(-55deg); }
}
.htl svg { width: 26px; height: 26px; }
.htl img { width: 26px; height: 26px; object-fit: contain; border-radius: 0; pointer-events: none; }
.htl:nth-child(1) { top: 0; left: 50%; }
.htl:nth-child(2) { top: 14.64%; left: 85.36%; }
.htl:nth-child(3) { top: 50%; left: 100%; }
.htl:nth-child(4) { top: 85.36%; left: 85.36%; }
.htl:nth-child(5) { top: 100%; left: 50%; }
.htl:nth-child(6) { top: 85.36%; left: 14.64%; }
.htl:nth-child(7) { top: 50%; left: 0; }
.htl:nth-child(8) { top: 14.64%; left: 14.64%; }

/* ===== TECH ORBIT ===== */
.tech-orbit-section {
  padding: 30px 24px 40px; text-align: center;
  position: relative; z-index: 2; overflow: hidden;
}
.tech-orbit-section .section-header { margin-bottom: 48px; }
.tech-orbit-wrap {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 60px;
}
.orbit-stage {
  position: relative; width: 320px; height: 320px; flex-shrink: 0; margin: 0 auto;
}
.orbit-glow-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(67,97,238,0.18) 0%, rgba(67,97,238,0.04) 50%, transparent 70%);
  border-radius: 50%; filter: blur(20px);
}
.orbit-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(67,97,238,0.08);
  z-index: 3;
}
.orbit-center svg { width: 36px; height: 36px; }
/* Single orbit ring */
.orbit-ring-track {
  position: absolute; top: 50%; left: 50%;
  width: 290px; height: 290px;
  transform: translate(-50%,-50%);
  border: 1.5px dashed var(--border); border-radius: 50%;
  animation: orbitSpin 50s linear infinite;
}
@keyframes orbitSpin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
/* Tech logos */
.tech-logo {
  position: absolute; width: 46px; height: 46px;
  border-radius: 50%; background: var(--bg-card);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); z-index: 4;
  /* counter-rotate to stay upright */
  animation: counterSpin 50s linear infinite;
}
@keyframes counterSpin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(-360deg); } }
.tech-logo svg { width: 24px; height: 24px; }
.tech-logo img { width: 28px; height: 28px; object-fit: contain; border-radius: 0; pointer-events: none; }
.tech-logo span { font-size: 10px; font-weight: 800; line-height: 1; }
/* 8 logos evenly spaced at 45deg intervals on the ring */
.tl-1 { top: 0%;   left: 50%;  }
.tl-2 { top: 14.6%; left: 85.4%; }
.tl-3 { top: 50%;  left: 100%; }
.tl-4 { top: 85.4%; left: 85.4%; }
.tl-5 { top: 100%; left: 50%;  }
.tl-6 { top: 85.4%; left: 14.6%; }
.tl-7 { top: 50%;  left: 0%;   }
.tl-8 { top: 14.6%; left: 14.6%; }
.tech-orbit-text { text-align: left; max-width: 360px; }
.tech-orbit-text h2 { font-size: clamp(26px,3.5vw,38px); font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.15; }
.tech-orbit-text p { font-size: 15px; color: var(--text-sub); line-height: 1.7; }
@media(max-width: 900px) {
  .tech-orbit-wrap { flex-direction: column; gap: 36px; }
  .tech-orbit-text { text-align: center; }
  .orbit-stage { width: 290px; height: 290px; }
  .orbit-ring-track { width: 260px; height: 260px; }
}
@media(max-width: 480px) {
  .orbit-stage { width: 250px; height: 250px; }
  .orbit-ring-track { width: 220px; height: 220px; }
  .tech-logo { width: 38px; height: 38px; }
  .tech-logo svg { width: 22px; height: 22px; }
}

/* ===== TRUSTED / INDUSTRIES ===== */
.trusted { padding: 50px 24px 20px; text-align: center; position: relative; z-index: 2; }
.trusted-label { font-size: 13px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 32px; }
.ind-marquee {
  max-width: 1100px; margin: 0 auto; overflow: hidden; position: relative;
}
.ind-marquee::before, .ind-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.ind-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ind-marquee::after { right: 0; background: linear-gradient(90deg, transparent, var(--bg)); }
.industry-strip {
  display: flex; gap: 16px; width: max-content;

}
.ind-chip {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 16px 20px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.45s cubic-bezier(0.23,1,0.32,1); cursor: default;
  position: relative; min-width: 140px; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
}
.ind-chip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 16px 16px 0 0; opacity: 0.7; transition: opacity 0.3s;
}
.ind-chip:hover::before { opacity: 1; }
.ind-chip:nth-child(1)::before, .ind-chip:nth-child(7)::before { background: var(--accent); }
.ind-chip:nth-child(2)::before, .ind-chip:nth-child(8)::before { background: #10b981; }
.ind-chip:nth-child(3)::before, .ind-chip:nth-child(9)::before { background: var(--accent2); }
.ind-chip:nth-child(4)::before, .ind-chip:nth-child(10)::before { background: #f59e0b; }
.ind-chip:nth-child(5)::before, .ind-chip:nth-child(11)::before { background: var(--accent3); }
.ind-chip:nth-child(6)::before, .ind-chip:nth-child(12)::before { background: #ef4444; }
.ind-chip::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.dark .ind-chip::after { background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%); }
.ind-chip:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 18px 50px rgba(67,97,238,0.14), 0 6px 16px rgba(0,0,0,0.08); border-color: transparent; }
.ind-chip:hover .ind-icon { transform: scale(1.15); }
.ind-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.ind-icon svg { width: 34px; height: 34px; }
.ind-chip span { font-size: 12px; font-weight: 700; color: var(--text-sub); letter-spacing: 0.3px; text-align: center; line-height: 1.3; }

/* Trusted Organizations */
.trust-org-section { padding: 40px 24px 60px; text-align: center; position: relative; z-index: 2; }
.org-marquee {
  max-width: 1100px; margin: 0 auto; overflow: hidden; position: relative;
}
.org-marquee::before, .org-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.org-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.org-marquee::after { right: 0; background: linear-gradient(90deg, transparent, var(--bg)); }
.org-strip {
  display: flex; gap: 16px; width: max-content;

}
.org-chip {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 20px 18px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.45s cubic-bezier(0.23,1,0.32,1); cursor: default;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  min-width: 150px; flex-shrink: 0;
  position: relative; overflow: hidden;
}
.org-chip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 16px 16px 0 0; opacity: 0.7; transition: opacity 0.3s;
}
.org-chip:hover::before { opacity: 1; }
.org-chip:nth-child(1)::before, .org-chip:nth-child(7)::before { background: #ef4444; }
.org-chip:nth-child(2)::before, .org-chip:nth-child(8)::before { background: var(--accent); }
.org-chip:nth-child(3)::before, .org-chip:nth-child(9)::before { background: var(--accent2); }
.org-chip:nth-child(4)::before, .org-chip:nth-child(10)::before { background: #10b981; }
.org-chip:nth-child(5)::before, .org-chip:nth-child(11)::before { background: var(--accent3); }
.org-chip:nth-child(6)::before, .org-chip:nth-child(12)::before { background: #f59e0b; }
.org-chip:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 18px 50px rgba(67,97,238,0.14), 0 6px 16px rgba(0,0,0,0.08); border-color: transparent; }
.org-chip:hover .org-chip-icon svg { transform: scale(1.1); }
.org-chip-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.org-chip-icon svg { width: 30px; height: 30px; transition: transform 0.3s ease; }
.org-chip span { font-size: 11px; font-weight: 700; color: var(--text-sub); text-align: center; line-height: 1.3; }

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.pill-s { background: rgba(67,97,238,0.1); color: var(--accent); }
.pill-s3 { background: rgba(232,67,147,0.1); color: var(--accent3); }
.pill-p { background: rgba(124,58,237,0.1); color: var(--accent2); }
.pill-a { background: rgba(67,97,238,0.1); color: var(--accent); }

.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900; letter-spacing: -1px; line-height: 1.12; margin-bottom: 16px;
}
.section-desc { font-size: 17px; color: var(--text-sub); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ===== PILLAR OVERVIEW CARDS ===== */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  transition: all 0.4s ease; position: relative; overflow: hidden; cursor: pointer;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 3px 3px 0 0; }
.pillar-card.pc-s::before { background: var(--accent3); }
.pillar-card.pc-p::before { background: var(--accent2); }
.pillar-card.pc-a::before { background: var(--accent); }
.pillar-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.pi-s { background: rgba(232,67,147,0.1); color: var(--accent3); }
.pi-p { background: rgba(124,58,237,0.1); color: var(--accent2); }
.pi-a { background: rgba(67,97,238,0.1); color: var(--accent); }
.pillar-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.pillar-card p { font-size: 14px; color: var(--text-sub); line-height: 1.6; margin-bottom: 20px; }
.pillar-card .card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--accent);
  transition: gap 0.2s;
}
.pillar-card.pc-s .card-cta { color: var(--accent3); }
.pillar-card.pc-p .card-cta { color: var(--accent2); }
.pillar-card.pc-a .card-cta { color: var(--accent); }
.pillar-card:hover .card-cta { gap: 10px; }

/* Pillar card creative visuals */
.pillar-visual {
  position: absolute; top: 0; right: 0;
  width: 140px; height: 140px; opacity: 0.12;
  pointer-events: none; overflow: hidden;
  border-radius: 0 var(--radius) 0 0;
}
.pillar-card:hover .pillar-visual { opacity: 0.22; }
.pillar-visual svg { width: 100%; height: 100%; }

/* Strategy orbiting nodes */
.pv-strategy .node-ring { transform-origin: 70px 70px; animation: pvOrbit 12s linear infinite; }
.pv-strategy .node-ring-rev { transform-origin: 70px 70px; animation: pvOrbit 16s linear infinite reverse; }
@keyframes pvOrbit { 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }

/* Agents pulsing mesh */
.pv-agents .mesh-line { animation: pvPulse 3s ease-in-out infinite alternate; }
.pv-agents .mesh-line:nth-child(2) { animation-delay: 0.5s; }
.pv-agents .mesh-line:nth-child(3) { animation-delay: 1s; }
.pv-agents .mesh-line:nth-child(4) { animation-delay: 1.5s; }
@keyframes pvPulse { 0%{opacity:0.3;stroke-width:1} 100%{opacity:1;stroke-width:2} }

/* Products stacking blocks */
.pv-products .block { animation: pvFloat 4s ease-in-out infinite; }
.pv-products .block:nth-child(2) { animation-delay: 0.6s; }
.pv-products .block:nth-child(3) { animation-delay: 1.2s; }
.pv-products .block:nth-child(4) { animation-delay: 1.8s; }
@keyframes pvFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

/* Stats Section */
.stats-section {
  padding: 80px 24px; background: var(--bg);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, var(--accent-glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(124,58,237,0.08) 0%, transparent 50%);
}
.stats-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-card {
  text-align: center; padding: 36px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); position: relative;
  overflow: hidden; transition: all 0.35s ease;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.stat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; border-radius: 0 0 3px 3px;
}
.stat-card:nth-child(1)::after { background: var(--accent3); }
.stat-card:nth-child(2)::after { background: var(--accent); }
.stat-card:nth-child(3)::after { background: var(--accent2); }
.stat-card:nth-child(4)::after { background: #10b981; }
.stat-number {
  font-size: clamp(38px, 5vw, 56px); font-weight: 900;
  letter-spacing: -2px; line-height: 1;
  margin-bottom: 8px;
}
.stat-card:nth-child(1) .stat-number { color: var(--accent3); }
.stat-card:nth-child(2) .stat-number { color: var(--accent); }
.stat-card:nth-child(3) .stat-number { color: var(--accent2); }
.stat-card:nth-child(4) .stat-number { color: #10b981; }
.stat-label { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.stat-sub { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
@media(max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; } .stat-card { padding: 24px 14px; } }

/* Value Proposition */
.vp-section { padding: 80px 24px; background: var(--bg-alt); }
.vp-inner { max-width: 1100px; margin: 0 auto; }
.vp-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.vp-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px;
  text-align: center; transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.vp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.vp-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--accent); border-radius: 0 0 3px 3px;
  transform: scaleX(0); transition: transform 0.3s ease;
}
.vp-card:hover::after { transform: scaleX(1); }
.vp-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin: 0 auto 16px;
  background: var(--accent-light); color: var(--accent);
}
.vp-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.vp-card p { font-size: 12px; color: var(--text-muted); line-height: 1.55; }
@media(max-width: 1024px) { .vp-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 600px) { .vp-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== DETAIL VIEW HEADER ===== */
.detail-view { padding-top: 90px; }
.detail-hero {
  padding: 40px 24px 0; text-align: center;
}
.detail-hero-inner { max-width: 700px; margin: 0 auto; }
.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  background: none; border: none; cursor: pointer; margin-bottom: 20px;
  font-family: var(--font); transition: color 0.2s;
}
.back-btn:hover { color: var(--accent); }
.detail-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900; letter-spacing: -1.2px; margin-bottom: 12px;
}
.detail-hero p { font-size: 17px; color: var(--text-sub); line-height: 1.7; }

/* ===== SUB TABS ===== */
.sub-tabs {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 32px 24px 0; flex-wrap: wrap;
}
.sub-tab {
  padding: 10px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--bg);
  color: var(--text-sub); cursor: pointer;
  transition: all 0.25s ease; font-family: var(--font);
}
.sub-tab:hover { border-color: var(--accent); color: var(--accent); }
.sub-tab.active-s { background: var(--accent3); color: #fff; border-color: var(--accent3); }
.sub-tab.active-p { background: var(--accent2); color: #fff; border-color: var(--accent2); }
.sub-tab.active-a { background: var(--accent); color: #fff; border-color: var(--accent); }

.tab-panel { display: none; animation: viewFadeIn 0.35s ease; }
.tab-panel.active { display: block; }

/* ===== CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }

.mini-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 24px;
  transition: all 0.3s ease; border-top: 3px solid transparent;
}
.mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
/* Colored top border per section */
#view-strategy .mini-card { border-top-color: var(--accent3); }
#view-agents .mini-card { border-top-color: var(--accent); }
#view-products .mini-card { border-top-color: var(--accent2); }
.mini-card .mc-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 14px; color: #fff;
}
.mc-s { background: var(--accent3); }
.mc-p { background: var(--accent2); }
.mc-a { background: var(--accent); }
.mini-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.mini-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* agent card */
.agent-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all 0.3s ease; border-top: 3px solid var(--accent);
}
.agent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-top-color: transparent; }
.agent-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.agent-avatar {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #fff;
}
.agent-card h4 { font-size: 16px; font-weight: 700; }
.agent-card .agent-tag { font-size: 11px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.agent-card p { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

/* detail list */
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.detail-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-sub); line-height: 1.6;
}
.detail-list li i { margin-top: 5px; font-size: 12px; flex-shrink: 0; }

/* tag pills */
.tag-group { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); color: var(--text-sub);
  transition: all 0.2s; background: var(--bg-card);
}
.tag:hover { border-color: var(--accent); color: var(--accent); }
.tag i { margin-right: 6px; font-size: 11px; }

/* ===== CTA ===== */
.cta-section {
  padding: 100px 24px; text-align: center; position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  border-radius: 50%; filter: blur(80px);
}
.cta-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-title { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; }
.cta-desc { font-size: 17px; color: var(--text-sub); margin-bottom: 36px; line-height: 1.7; }

/* ===== FOOTER ===== */
footer {
  padding: 60px 24px 30px; border-top: 1px solid var(--border); background: var(--bg);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .logo-mark { height: 54px; }
.footer-brand .footer-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-brand .footer-tagline { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 16px; }
.footer-col a, .footer-col button {
  display: block; font-size: 14px; color: var(--text-sub);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
  background: none; border: none; padding: 0; cursor: pointer; font-family: var(--font);
}
.footer-col a:hover, .footer-col button:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0;
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-muted);
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: var(--text-muted); font-size: 16px; transition: color 0.2s; text-decoration: none; }
.footer-socials a:hover { color: var(--accent); }

/* ===== ARC LAYOUT (Deliverables & Capabilities) ===== */
/* ===== ZIGZAG PILL DELIVERABLES ===== */
.zigzag-pills {
  max-width: 640px; margin: 0 auto; padding: 10px 0 20px;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.zp-row {
  display: flex; align-items: center; position: relative; z-index: 2;
  margin-top: -10px;
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.zp-row:first-child { margin-top: 0; }
.zp-row.zp-right { justify-content: flex-end; transform: translateX(30px); }
.zigzag-pills.visible .zp-row { opacity: 1; transform: translateX(0); }
.zigzag-pills.visible .zp-row:nth-child(1) { transition-delay: 0.1s; }
.zigzag-pills.visible .zp-row:nth-child(2) { transition-delay: 0.25s; }
.zigzag-pills.visible .zp-row:nth-child(3) { transition-delay: 0.4s; }
.zigzag-pills.visible .zp-row:nth-child(4) { transition-delay: 0.55s; }
.zigzag-pills.visible .zp-row:nth-child(5) { transition-delay: 0.7s; }
.zigzag-pills.visible .zp-row:nth-child(6) { transition-delay: 0.85s; }
/* The pill capsule */
.zp-pill {
  display: flex; align-items: center; border-radius: 50px;
  padding: 6px; gap: 0; width: 380px; max-width: 85vw;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  background: var(--bg-card); border: 1px solid var(--border);
}
.zp-pill:hover { transform: scale(1.03); box-shadow: var(--shadow-card); }
/* Left pill: icon left, text right */
.zp-left .zp-pill { flex-direction: row; }
/* Right pill: text left, icon right */
.zp-right .zp-pill { flex-direction: row-reverse; }
/* Circle badge — rose-pink */
.zp-badge {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff; position: relative; z-index: 3;
  background: linear-gradient(135deg, #c73078, #E84393);
  box-shadow: 0 3px 14px rgba(232,67,147,0.3);
}
/* Text inside pill */
.zp-text {
  flex: 1; padding: 8px 20px;
}
.zp-text h4 { font-size: 14px; font-weight: 800; margin: 0 0 2px; line-height: 1.3; }
.zp-text p { font-size: 11px; color: var(--text-muted); margin: 0; line-height: 1.3; }
@media(max-width: 500px) {
  .zp-pill { width: 100%; }
  .zp-row, .zp-row.zp-right { justify-content: center; }
  .zp-badge { width: 50px; height: 50px; font-size: 18px; }
  .zp-text h4 { font-size: 12.5px; }
  .zp-text p { font-size: 10px; }
}

/* ===== CAPABILITIES HUB-SPOKE ===== */
.cap-hub-wrap {
  position: relative; max-width: 800px; margin: 0 auto; padding: 20px 0;
  min-height: 520px;
}
.cap-hub-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(67,97,238,0.35) 0%, rgba(67,97,238,0.08) 60%, transparent 70%);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.cap-hub-inner {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #5B7FFF);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(67,97,238,0.4), 0 0 60px rgba(67,97,238,0.15);
}
.cap-hub-inner svg { width: 36px; height: 36px; }
.cap-svg-lines {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}
.cap-svg-lines line {
  stroke: var(--accent); stroke-width: 1.5; stroke-dasharray: 6 5;
  opacity: 0;
}
.cap-hub-wrap.visible .cap-svg-lines line {
  animation: capLineDraw 0.8s ease forwards;
}
.cap-hub-wrap.visible .cap-svg-lines line:nth-child(1) { animation-delay: 0.2s; }
.cap-hub-wrap.visible .cap-svg-lines line:nth-child(2) { animation-delay: 0.35s; }
.cap-hub-wrap.visible .cap-svg-lines line:nth-child(3) { animation-delay: 0.5s; }
.cap-hub-wrap.visible .cap-svg-lines line:nth-child(4) { animation-delay: 0.65s; }
.cap-hub-wrap.visible .cap-svg-lines line:nth-child(5) { animation-delay: 0.8s; }
.cap-hub-wrap.visible .cap-svg-lines line:nth-child(6) { animation-delay: 0.95s; }
@keyframes capLineDraw {
  from { opacity: 0; stroke-dashoffset: 80; }
  to { opacity: 0.35; stroke-dashoffset: 0; }
}
.cap-spoke {
  position: absolute; display: flex; flex-direction: column; align-items: center;
  text-align: center; z-index: 3; width: 140px;
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.cap-hub-wrap.visible .cap-spoke { opacity: 1; transform: scale(1); }
.cap-hub-wrap.visible .cap-spoke:nth-child(1) { transition-delay: 0.25s; }
.cap-hub-wrap.visible .cap-spoke:nth-child(2) { transition-delay: 0.4s; }
.cap-hub-wrap.visible .cap-spoke:nth-child(3) { transition-delay: 0.55s; }
.cap-hub-wrap.visible .cap-spoke:nth-child(4) { transition-delay: 0.7s; }
.cap-hub-wrap.visible .cap-spoke:nth-child(5) { transition-delay: 0.85s; }
.cap-hub-wrap.visible .cap-spoke:nth-child(6) { transition-delay: 1.0s; }
.cap-spoke:hover { transform: scale(1.08) !important; }
.cap-spoke-icon {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(67,97,238,0.08), rgba(67,97,238,0.02));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--accent);
  margin-bottom: 10px;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.cap-spoke:hover .cap-spoke-icon {
  box-shadow: 0 0 18px rgba(67,97,238,0.25);
  background: linear-gradient(135deg, rgba(67,97,238,0.15), rgba(67,97,238,0.05));
}
.cap-spoke h4 { font-size: 13px; font-weight: 700; line-height: 1.3; margin: 0 0 3px; }
.cap-spoke p { font-size: 11px; color: var(--text-muted); line-height: 1.35; margin: 0; font-style: italic; }
/* Spoke positions: 6 around center */
.cap-spoke.sp-top    { top: 2%;  left: 50%;  transform-origin: center; margin-left: -70px; }
.cap-spoke.sp-tl     { top: 18%; left: 5%;   }
.cap-spoke.sp-tr     { top: 18%; right: 5%;  }
.cap-spoke.sp-bl     { bottom: 18%; left: 5%;  }
.cap-spoke.sp-br     { bottom: 18%; right: 5%; }
.cap-spoke.sp-bottom { bottom: 2%; left: 50%; margin-left: -70px; }
@media(max-width: 700px) {
  .cap-hub-wrap { min-height: auto; padding: 20px 10px; }
  .cap-hub-center { position: relative; top: auto; left: auto; transform: none; margin: 0 auto 28px; }
  .cap-svg-lines { display: none; }
  .cap-spoke {
    position: relative !important; top: auto !important; left: auto !important;
    right: auto !important; bottom: auto !important; margin: 0 !important;
    width: 100%;
  }
  .cap-hub-wrap {
    display: flex; flex-direction: column; align-items: center; gap: 18px;
  }
  .cap-spoke { flex-direction: row; text-align: left; gap: 14px; width: 280px; }
  .cap-spoke-icon { margin-bottom: 0; flex-shrink: 0; }
}

/* ===== STRATEGY HUB-SPOKE VARIANT ===== */
.cap-hub-wrap.strategy-hub .cap-svg-lines line { stroke: var(--accent3); }
.cap-hub-wrap.strategy-hub .cap-hub-inner {
  background: linear-gradient(135deg, var(--accent3), #c73078);
  box-shadow: 0 0 30px rgba(232,67,147,0.35), 0 0 60px rgba(232,67,147,0.12);
}
.cap-hub-wrap.strategy-hub .cap-spoke-icon {
  border-color: var(--accent3); color: var(--accent3);
  background: linear-gradient(135deg, rgba(232,67,147,0.08), rgba(232,67,147,0.02));
}
.cap-hub-wrap.strategy-hub .cap-spoke:hover .cap-spoke-icon {
  box-shadow: 0 0 18px rgba(232,67,147,0.25);
  background: linear-gradient(135deg, rgba(232,67,147,0.15), rgba(232,67,147,0.05));
}
@keyframes capLineDrawStrategy {
  from { opacity: 0; stroke-dashoffset: 80; }
  to { opacity: 0.4; stroke-dashoffset: 0; }
}
.cap-hub-wrap.strategy-hub.visible .cap-svg-lines line {
  animation: capLineDrawStrategy 0.8s ease forwards;
}

/* ===== DRAGGABLE MARQUEE ===== */
.ind-marquee, .org-marquee { cursor: grab; -webkit-user-select: none; user-select: none; }
.ind-marquee.dragging, .org-marquee.dragging { cursor: grabbing; }

/* ===== FORMULA 3D ROADMAP ===== */
.formula-roadmap { max-width: 960px; margin: 0 auto; }
.roadmap-scene { perspective: 1200px; }
.roadmap-track {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  transform: rotateX(6deg) rotateY(-4deg);
  transform-style: preserve-3d;
}
.roadmap-step {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  flex: 1; max-width: 200px;
}
.roadmap-connector {
  display: flex; align-items: center; justify-content: center;
  width: 48px; flex-shrink: 0; padding-top: 28px;
}
.rc-line {
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 2px; position: relative;
}
.rc-line::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left: 7px solid var(--accent);
}
.rs-cube {
  width: 72px; height: 72px; position: relative;
  transform-style: preserve-3d;
  animation: cubeFloat 4s ease-in-out infinite;
}
.rs-1 .rs-cube { animation-delay: 0s; }
.rs-2 .rs-cube { animation-delay: 0.5s; }
.rs-3 .rs-cube { animation-delay: 1s; }
.rs-4 .rs-cube { animation-delay: 1.5s; }
@keyframes cubeFloat {
  0%, 100% { transform: rotateX(-20deg) rotateY(25deg) translateY(0); }
  50% { transform: rotateX(-20deg) rotateY(25deg) translateY(-10px); }
}
.cube-face {
  position: absolute; width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px; backface-visibility: hidden;
}
.rs-1 .cube-face { background: linear-gradient(135deg, #b83278, #d44a8a); color: #fff; }
.rs-2 .cube-face { background: linear-gradient(135deg, #6230b0, #8356cc); color: #fff; }
.rs-3 .cube-face { background: linear-gradient(135deg, #3450c9, #4f6ad8); color: #fff; }
.rs-4 .cube-face { background: linear-gradient(135deg, #1a7f8f, #2a95a8); color: #fff; }
.cube-face i { color: #fff; opacity: 0.95; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }
.cube-front  { transform: translateZ(36px); }
.cube-back   { transform: rotateY(180deg) translateZ(36px); }
.cube-right  { transform: rotateY(90deg) translateZ(36px); }
.cube-left   { transform: rotateY(-90deg) translateZ(36px); }
.cube-top    { transform: rotateX(90deg) translateZ(36px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(36px); }
.rs-1 .cube-right, .rs-1 .cube-left { background: linear-gradient(135deg, #972860, #b83278); }
.rs-2 .cube-right, .rs-2 .cube-left { background: linear-gradient(135deg, #4c2290, #6230b0); }
.rs-3 .cube-right, .rs-3 .cube-left { background: linear-gradient(135deg, #2840a8, #3450c9); }
.rs-4 .cube-right, .rs-4 .cube-left { background: linear-gradient(135deg, #146878, #1a7f8f); }
.rs-1 .cube-top { background: linear-gradient(135deg, #d44a8a, #dc6a9e); }
.rs-2 .cube-top { background: linear-gradient(135deg, #8356cc, #9c78dd); }
.rs-3 .cube-top { background: linear-gradient(135deg, #4f6ad8, #6d84e2); }
.rs-4 .cube-top { background: linear-gradient(135deg, #2a95a8, #3eadbf); }
.rs-1 .cube-bottom { background: #7a1e50; }
.rs-2 .cube-bottom { background: #3d1a72; }
.rs-3 .cube-bottom { background: #1f3090; }
.rs-4 .cube-bottom { background: #0f5260; }
.rs-label { text-align: center; }
.rs-num {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: var(--text-muted); margin-bottom: 6px;
}
.rs-label h4 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.rs-label p { font-size: 13px; color: var(--text-sub); line-height: 1.55; }
@media(max-width: 768px) {
  .formula-roadmap .roadmap-scene { perspective: none; }
  .formula-roadmap .roadmap-track {
    flex-direction: column; align-items: center; gap: 0;
    transform: none;
  }
  .formula-roadmap .roadmap-step {
    max-width: 280px; text-align: center;
    gap: 14px; padding: 8px 0;
  }
  /* Flatten 3D cubes on mobile — scoped to roadmap only */
  .formula-roadmap .rs-cube {
    width: 56px; height: 56px;
    animation: none !important;
    transform: none !important;
  }
  .formula-roadmap .cube-face { width: 56px; height: 56px; border-radius: 14px; }
  .formula-roadmap .cube-face.cube-front { transform: none; }
  .formula-roadmap .cube-face.cube-back,
  .formula-roadmap .cube-face.cube-right,
  .formula-roadmap .cube-face.cube-left,
  .formula-roadmap .cube-face.cube-top,
  .formula-roadmap .cube-face.cube-bottom { display: none; }
  /* Vertical connector — taller with clear spacing */
  .formula-roadmap .roadmap-connector {
    width: auto; height: 48px; padding: 10px 0;
    flex-direction: column; align-items: center; justify-content: center;
  }
  .formula-roadmap .rc-line {
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--accent2), var(--accent));
    position: relative;
  }
  .formula-roadmap .rc-line::after {
    right: auto; bottom: -7px; top: auto; left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent; border-top: 8px solid var(--accent);
    border-left: 6px solid transparent;
  }
  .formula-roadmap .rs-label { margin-top: 4px; }
  .formula-roadmap .rs-label h4 { font-size: 16px; margin-bottom: 4px; }
  .formula-roadmap .rs-label p { font-size: 12px; line-height: 1.5; padding: 0 8px; }
}

/* ===== ABOUT PAGE ===== */
.about-intro { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.about-intro-top { display: flex; align-items: flex-start; gap: 48px; margin-bottom: 48px; }
.about-intro-logo { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.about-intro-logo .logo-mark { height: 72px; }
.about-intro-logo .logo-tagline { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
.about-intro-desc { flex: 1; }
.about-intro-desc p { font-size: 17px; line-height: 1.85; color: var(--text-sub); margin: 0; }
.about-intro .highlight { color: var(--accent); font-weight: 700; }
@media(max-width: 700px) {
  .about-intro-top { flex-direction: column; align-items: center; gap: 24px; text-align: center; }
}
.about-timeline { display: flex; align-items: center; gap: 16px; margin: 40px 0 12px; }
.about-timeline .tl-year { font-size: 42px; font-weight: 900; letter-spacing: -2px; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-timeline .tl-label { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.founder-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin: 40px auto 0; padding: 0 24px; }
.founder-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; }
.founder-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent2)); }
.founder-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 16px; }
.founder-badge.ms { background: rgba(0,164,239,0.1); color: #00A4EF; }
.founder-badge.oracle { background: rgba(199,70,52,0.1); color: #C74634; }
.founder-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.founder-card .role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.founder-card p { font-size: 14px; color: var(--text-sub); line-height: 1.65; }
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.city-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.4s ease; }
.city-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.city-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.city-info { padding: 20px; text-align: center; }
.city-info h4 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.city-info span { font-size: 13px; color: var(--text-muted); }
.contact-section { max-width: 700px; margin: 0 auto; padding: 0 24px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .full-width { grid-column: 1 / -1; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--text-sub); margin-bottom: 6px; letter-spacing: 0.3px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-card); color: var(--text); font-size: 16px; font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a94a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.contact-submit {
  grid-column: 1 / -1; padding: 16px 32px; border: none; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff;
  font-size: 16px; font-weight: 700; font-family: var(--font); cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s; letter-spacing: 0.3px;
}
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(67,97,238,0.25); }
.contact-success { display: none; text-align: center; padding: 40px; }
.contact-success.show { display: block; }
.contact-success i { font-size: 48px; color: #10b981; margin-bottom: 16px; }
.contact-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.contact-success p { font-size: 15px; color: var(--text-sub); }
@media(max-width:768px) {
  .founder-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full-width { grid-column: 1; }
}
@media(max-width:480px) {
  .cities-grid { grid-template-columns: 1fr; }
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  position: relative; z-index: 200;
  background: none; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: var(--text-sub);
  transition: color 0.2s; padding: 0;
}
.theme-toggle:hover { color: var(--accent); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
.dark .theme-toggle .icon-sun { display: block; }
.dark .theme-toggle .icon-moon { display: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse { 0%,100%{opacity:0.6;transform:translate(-50%,-50%) scale(1)} 50%{opacity:1;transform:translate(-50%,-50%) scale(1.15)} }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media(max-width: 1024px) {
  .hero-scene { height: 380px; margin: 0 auto; max-width: 500px; }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .pillars-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media(max-width: 768px) {
  .logo-mark { height: 34px; }
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .mobile-toggle { display: block; }
  .hero { min-height: auto; padding: 100px 20px 30px; }
  .hero-title { font-size: 32px; }
  .hero-scene { height: 320px; }
  .float-card { padding: 10px 14px; font-size: 11px; }
  .float-card .fc-icon { width: 26px; height: 26px; font-size: 11px; }
  .cube-container { width: 120px; height: 120px; }
  .cube-face { width: 120px; height: 120px; }
  .cube-face.front  { transform: translateZ(60px); }
  .cube-face.back   { transform: rotateY(180deg) translateZ(60px); }
  .cube-face.right  { transform: rotateY(90deg) translateZ(60px); }
  .cube-face.left   { transform: rotateY(-90deg) translateZ(60px); }
  .cube-face.top    { transform: rotateX(90deg) translateZ(60px); }
  .cube-face.bottom { transform: rotateX(-90deg) translateZ(60px); }
  .orbit-ring.r1 { width: 200px; height: 200px; }
  .orbit-ring.r2 { width: 280px; height: 280px; }
  .section { padding: 60px 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  /* Show all float cards on tablet but smaller */
  .float-card { padding: 7px 10px; font-size: 10px; gap: 6px; }
  .float-card .fc-icon { width: 22px; height: 22px; font-size: 10px; border-radius: 6px; }
  .float-card.fc-1 { top: 4%; left: 2%; }
  .float-card.fc-2 { top: 4%; right: 2%; }
  .float-card.fc-3 { bottom: 22%; left: 0%; }
  .float-card.fc-4 { bottom: 14%; right: 0%; }
  .float-card.fc-5 { top: 42%; left: -2%; }
  .float-card.fc-6 { top: 42%; right: -2%; }
  .hero-tech-orbit { width: 340px; height: 340px; }
  .htl { width: 34px; height: 34px; margin: -17px 0 0 -17px; }
  .htl svg, .htl img { width: 20px; height: 20px; }
  .sub-tabs { gap: 4px; }
  .sub-tab { padding: 8px 16px; font-size: 13px; }
}
@media(max-width: 480px) {
  .hero-title { font-size: 28px; letter-spacing: -1px; }
  .hero-desc { font-size: 15px; }
  .hero-scene { height: 280px; }
  /* Compact float cards for small mobile */
  .float-card { padding: 5px 8px; font-size: 9px; gap: 5px; border-radius: 8px; }
  .float-card .fc-icon { width: 20px; height: 20px; font-size: 9px; border-radius: 5px; }
  .float-card.fc-1 { top: 0%; left: 0%; }
  .float-card.fc-2 { top: 0%; right: 0%; }
  .float-card.fc-3 { bottom: 16%; left: -1%; }
  .float-card.fc-4 { bottom: 8%; right: -1%; }
  .float-card.fc-5 { top: 36%; left: -4%; }
  .float-card.fc-6 { top: 36%; right: -4%; }
  .hero-tech-orbit { width: 270px; height: 270px; }
  .htl { width: 28px; height: 28px; margin: -14px 0 0 -14px; }
  .htl svg, .htl img { width: 17px; height: 17px; }
}
