﻿/* â”€â”€â”€ RESET â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #05020f;
  --border:      rgba(255,255,255,0.09);
  --border-hi:   rgba(255,255,255,0.14);
  --text-dim:    rgba(255,255,255,0.55);
  --muted:       rgba(255,255,255,0.38);
  --accent:      rgba(130,60,255,0.42);
  --accent-border: rgba(180,120,255,0.35);
  --glow:        rgba(255,255,255,0.22);
  --purple-hi:   #9855ff;
  --card-bg:     rgba(7,4,18,0.72);
  --pill-bg:     rgba(10,6,24,0.58);
  --font:        'DM Sans', sans-serif;
}

html, body {
  background: var(--bg);
  color: #fff;
  font-family: var(--font);
  overflow-x: hidden;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nav-outer {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  width: 1200px;
  height: 68px;
  padding: 13px 0;
  position: relative;
}

/* Logo */
.logo {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: radial-gradient(circle at 40% 40%, #9b5fff, #3d1a8a 70%, #1a0a40);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(140,69,255,0.55), inset 0 0 8px rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.logo::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.28) 0%, transparent 60%);
  border-radius: inherit;
}
.logo svg { position: relative; z-index: 1; }

/* Logo image replacement */
.logo-img-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: auto;
    padding-left: 20px;
}

.logo-img-wrap img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(10,6,24,0.86);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--border-hi);
  background: rgba(16,10,34,0.96);
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  transition: transform 0.24s ease, opacity 0.2s ease;
}

.nav-outer.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-outer.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-outer.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Pill */
.nav-pill {
  display: flex; align-items: center; justify-content: center;
  padding: 8px 32px; gap: 4px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 60px;
  background: var(--pill-bg);
  backdrop-filter: blur(10px);
}

.nav-item {
  display: flex; align-items: center; gap: 3px;
  cursor: pointer;
  padding: 3px 11px;
  border-radius: 20px;
  transition: background 0.18s;
  text-decoration: none;
  position: relative;
}
.nav-item:hover { background: rgba(255,255,255,0.07); }
.nav-item span {
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  line-height: 26px;
  letter-spacing: -0.01em;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color 0.18s;
}
.nav-item:hover span { color: rgba(255,255,255,0.88); }

.caret-icon {
  width: 14px; height: 14px; opacity: 0.55; flex-shrink: 0;
  transition: opacity 0.18s, transform 0.2s;
}
.nav-item:hover .caret-icon { opacity: 0.9; transform: rotate(180deg); }

.nav-divider { width: 1px; height: 15px; background: var(--border); flex-shrink: 0; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 168px;
  background: rgba(12,6,28,0.95);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px 6px;
  backdrop-filter: blur(24px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.16s, transform 0.16s;
  z-index: 200;
}
.has-dropdown:hover .dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block; padding: 7px 12px;
  font-size: 12.5px; color: var(--text-dim);
  text-decoration: none; border-radius: 8px;
  transition: background 0.14s, color 0.14s;
  white-space: nowrap;
}
.dropdown a:hover { background: rgba(255,255,255,0.07); color: #fff; }

/* CTA wrap */
.cta-wrap {
  display: flex; align-items: center; justify-content: center;
  padding: 6px;
  width: 152px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px; flex-shrink: 0;
}
.cta-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 30px; padding: 2px 15px;
  background: var(--accent);
  border: 1px solid var(--accent-border);
  box-shadow: inset 0 0 6px 3px var(--glow);
  backdrop-filter: blur(7px);
  border-radius: 8px;
  cursor: pointer; text-decoration: none;
  transition: background 0.22s, box-shadow 0.22s, transform 0.14s;
}
.cta-btn:hover {
  background: rgba(140,69,255,0.64);
  box-shadow: inset 0 0 8px 4px rgba(255,255,255,0.3), 0 0 20px rgba(140,69,255,0.4);
  transform: translateY(-1px);
}
.cta-btn span {
  font-family: var(--font); font-weight: 500;
  font-size: 13px; color: #fff; letter-spacing: -0.01em;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO BG
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  overflow: hidden;
}

.bg-scene {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 0;
}
.orb-a {
  position: absolute;
  width: 700px; height: 700px;
  left: 50%; top: 180px;
  transform: translateX(-50%);
  background: #5820a0;
  border-radius: 50%;
  filter: blur(220px); opacity: 0.46;
  animation: breathe 8s ease-in-out infinite;
}
.orb-b {
  position: absolute;
  width: 440px; height: 440px;
  left: 50%; top: 320px;
  transform: translateX(-50%);
  background: #7030c0;
  border-radius: 50%;
  filter: blur(95px); opacity: 0.36;
  animation: breathe 8s ease-in-out infinite reverse;
}
@keyframes breathe {
  0%,100% { opacity:.52; transform:translateX(-50%) scale(1); }
  50%      { opacity:.70; transform:translateX(-50%) scale(1.06); }
}

.rings {
  position: absolute;
  left: 50%; top: 140px;
  transform: translateX(-50%);
  width: 960px; height: 960px;
}
.ring {
  position: absolute; border-radius: 50%;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
}
.ring-1 { width:960px;height:960px; border:1px solid rgba(255,255,255,0.06); }
.ring-2 { width:740px;height:740px; border:1px dashed rgba(255,255,255,0.10); animation:spin 60s linear infinite; }
.ring-3 { width:530px;height:530px; border:1px solid rgba(255,255,255,0.15); }
.ring-4 { width:320px;height:320px; border:1px dashed rgba(255,255,255,0.18); animation:spin 38s linear infinite reverse; }
@keyframes spin { to { transform:translate(-50%,-50%) rotate(360deg); } }

.ring-node {
  position: absolute;
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid rgba(110,50,190,0.8);
  background: rgba(20,8,45,0.9);
}
.ring-node::after {
  content:''; position:absolute; inset:2px;
  border-radius:50%; background:rgba(140,69,255,0.55);
}

.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.30;
}
.bottom-fade {
  position: absolute; bottom:0; left:0;
  width:100%; height:280px;
  background: linear-gradient(to bottom, rgba(5,2,15,0) 0%, #05020f 90%);
  z-index: 2;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FLOATING CUBES (full hero bg)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cubes-scene {
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  perspective: 900px;
  opacity: 0.72;
}

.cube-wrapper {
  position: absolute;
  transform-style: preserve-3d;
  animation: floatCube linear infinite;
}

.cube {
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube linear infinite;
}

.cube-face {
  position: absolute;
  border-radius: 6px;
  backface-visibility: hidden;
}

/* Shared face transforms â€” set via inline size */
.face-front  { transform: translateZ(var(--half)); }
.face-back   { transform: rotateY(180deg) translateZ(var(--half)); }
.face-right  { transform: rotateY(90deg)  translateZ(var(--half)); }
.face-left   { transform: rotateY(-90deg) translateZ(var(--half)); }
.face-top    { transform: rotateX(90deg)  translateZ(var(--half)); }
.face-bottom { transform: rotateX(-90deg) translateZ(var(--half)); }

/* Cube colour themes */
.cube-dark .cube-face {
  background: linear-gradient(135deg, rgba(14,8,34,0.80) 0%, rgba(22,12,48,0.76) 100%);
  border: 1px solid rgba(100,60,200,0.22);
  box-shadow: inset 0 0 16px rgba(80,30,160,0.16);
}
.cube-dark .face-top {
  background: linear-gradient(135deg, rgba(30,16,66,0.72) 0%, rgba(20,10,48,0.78) 100%);
  border: 1px solid rgba(130,80,220,0.28);
}
.cube-dark .face-right {
  background: linear-gradient(135deg, rgba(12,7,30,0.80) 0%, rgba(18,10,42,0.76) 100%);
  border: 1px solid rgba(80,40,160,0.18);
}

.cube-mid .cube-face {
  background: linear-gradient(135deg, rgba(24,12,58,0.76) 0%, rgba(36,18,82,0.72) 100%);
  border: 1px solid rgba(140,80,240,0.24);
  box-shadow: inset 0 0 20px rgba(100,40,200,0.18);
}
.cube-mid .face-top {
  background: linear-gradient(135deg, rgba(50,26,110,0.68) 0%, rgba(34,18,78,0.74) 100%);
  border: 1px solid rgba(160,100,255,0.30);
}
.cube-mid .face-right {
  background: linear-gradient(135deg, rgba(20,10,48,0.76) 0%, rgba(30,15,70,0.72) 100%);
  border: 1px solid rgba(110,60,210,0.20);
}

.cube-light .cube-face {
  background: linear-gradient(135deg, rgba(44,22,96,0.62) 0%, rgba(58,30,126,0.58) 100%);
  border: 1px solid rgba(160,110,255,0.24);
  box-shadow: inset 0 0 20px rgba(130,70,240,0.16);
}
.cube-light .face-top {
  background: linear-gradient(135deg, rgba(76,42,154,0.56) 0%, rgba(56,28,120,0.62) 100%);
  border: 1px solid rgba(190,140,255,0.28);
}
.cube-light .face-right {
  background: linear-gradient(135deg, rgba(38,20,88,0.64) 0%, rgba(48,24,108,0.60) 100%);
  border: 1px solid rgba(140,90,240,0.22);
}

/* Highlight sheen on some faces */
.cube-face::after {
  content:'';
  position:absolute; inset:0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 55%);
  pointer-events:none;
}

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

@keyframes rotateCube {
  from { transform: rotateX(var(--rx-start)) rotateY(var(--ry-start)) rotateZ(var(--rz-start)); }
  to   { transform: rotateX(var(--rx-end))   rotateY(var(--ry-end))   rotateZ(var(--rz-end)); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO CONTENT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
}

/* Keep cubes from covering small viewports */
@media (max-width: 900px) {
  .cubes-scene { display: none; }
}

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px;
  background: #000;
  border: 1px solid var(--border-hi);
  border-radius: 50px;
  margin-bottom: 30px;
  animation: fadeUp 0.7s ease both;
}
.badge-pill {
  background: var(--purple-hi);
  border-radius: 40px;
  padding: 2px 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.10em;
  color: #fff;
  text-transform: uppercase;
}
.badge-text {
  font-size: 12.5px;
  color: var(--purple-hi);
  letter-spacing: -0.01em;
}

/* Headline */
.headline-wrap {
  width: 660px; text-align: center;
  margin-bottom: 20px;
  animation: fadeUp 0.75s 0.10s ease both;
}
.headline {
  font-family: var(--font);
  font-weight: 700;
  font-size: 54px;
  line-height: 62px;
  letter-spacing: -0.035em;
  background: linear-gradient(175deg, #ffffff 50%, #c09aee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.headline em {
  font-style: italic;
  font-weight: 400;
}

/* Subhead */
.subhead {
  width: 520px; text-align: center;
  font-size: 16px; line-height: 27px;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  animation: fadeUp 0.75s 0.18s ease both;
}

/* CTA row */
.cta-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 48px;
  animation: fadeUp 0.75s 0.26s ease both;
}
.cta-primary {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 26px;
  background: #fff; border-radius: 10px;
  font-family: var(--font); font-weight: 500;
  font-size: 13.5px; color: #000;
  cursor: pointer; text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.16s, box-shadow 0.16s;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.45); }

.cta-secondary {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 22px;
  border: 1px solid var(--border-hi); border-radius: 10px;
  font-size: 13.5px; color: rgba(255,255,255,0.70);
  cursor: pointer; text-decoration: none;
  letter-spacing: -0.01em;
  transition: border-color 0.18s, color 0.18s;
}
.cta-secondary:hover { border-color: rgba(255,255,255,0.35); color: #fff; }

/* Trust strip */
.trust-strip {
  display: flex; align-items: center; gap: 26px;
  margin-bottom: 56px;
  animation: fadeUp 0.75s 0.34s ease both;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 11.5px; color: var(--muted);
  letter-spacing: 0.01em;
}
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(152,85,255,0.65); flex-shrink:0; }
.trust-divider { width:1px; height:13px; background: var(--border-hi); }

/* Stats row */
.stats-row {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  overflow: hidden;
  margin-bottom: 48px;
  animation: fadeUp 0.75s 0.40s ease both;
  width: 840px;
}
.stat-cell {
  flex: 1; padding: 20px 24px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.stat-cell:last-child { border-right: none; }
.stat-value {
  font-family: var(--font);
  font-weight: 700; font-size: 28px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 55%, #c090ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-delta {
  display: inline-block; font-size: 10px;
  padding: 1px 6px; border-radius: 20px;
  background: rgba(90,220,114,0.12); color: #5adc72;
  font-weight: 500; margin-left: 6px;
  vertical-align: middle; letter-spacing: 0.02em;
}
.stat-label {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.02em; text-transform: uppercase;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DASHBOARD
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.dashboard-wrap {
  position: relative; width: 1080px;
  animation: fadeUp 0.85s 0.48s ease both;
}
.dashboard-glow {
  position: absolute;
  top: -35px; left: 50%; transform: translateX(-50%);
  width: 860px; height: 100px;
  background: radial-gradient(ellipse, rgba(140,69,255,0.30) 0%, transparent 70%);
  filter: blur(28px); pointer-events: none;
}
.dashboard-card {
  width: 100%;
  background: linear-gradient(270deg, rgba(7,3,18,0.96) 0%, rgba(7,3,18,0.88) 50%, rgba(5,2,16,0.96) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 -20px 70px rgba(140,69,255,0.14),
    0 -14px 50px rgba(140,69,255,0.09),
    0 40px 70px rgba(0,0,0,0.5);
}
.dash-inner {
  display: grid;
  grid-template-columns: 210px 1fr 250px;
  min-height: 460px;
  background: #080317;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; overflow: hidden;
  margin: 9px;
}

/* Sidebar */
.dash-sidebar {
  border-right: 1px solid var(--border);
  padding: 18px 0;
  display: flex; flex-direction: column; gap: 1px;
}
.sidebar-header {
  padding: 4px 16px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.sidebar-brand {
  font-family: var(--font); font-weight: 700;
  font-size: 12.5px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
}
.sidebar-sub { font-size: 10px; color: var(--muted); margin-top: 2px; }

.sidebar-section-label {
  padding: 6px 16px 3px;
  font-size: 9px; letter-spacing: 0.13em;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
}
.sidebar-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  font-size: 12px; color: rgba(255,255,255,0.42);
  cursor: pointer; position: relative;
  transition: background 0.14s, color 0.14s;
}
.sidebar-item.active {
  background: rgba(152,85,255,0.10); color: #fff;
}
.sidebar-item.active::before {
  content: ''; position: absolute;
  left:0; top:0; bottom:0; width: 2px;
  background: var(--purple-hi);
  border-radius: 0 2px 2px 0;
}
.sidebar-item:hover:not(.active) { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.72); }
.sidebar-dot {
  width:5px; height:5px; border-radius:50%;
  background: rgba(255,255,255,0.14); flex-shrink:0;
}
.sidebar-dot.active { background: var(--purple-hi); box-shadow: 0 0 5px rgba(152,85,255,0.8); }
.sidebar-badge {
  margin-left: auto;
  background: rgba(152,85,255,0.18);
  border: 1px solid rgba(152,85,255,0.28);
  border-radius: 10px; font-size: 9px;
  padding: 1px 6px; color: #c090ff;
}

/* Main */
.dash-main {
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 16px;
  overflow: hidden;
}
.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
}
.dash-title { font-size: 13.5px; font-weight: 500; letter-spacing: -0.01em; }
.dash-subtitle { font-size: 11px; color: var(--muted); margin-top: 2px; }
.dash-date-chip {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--border);
  border-radius: 8px; padding: 5px 11px;
  font-size: 11px; color: var(--muted);
}

.kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.kpi-card {
  background: rgba(8,5,20,0.82);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
}
.kpi-label {
  font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 7px;
}
.kpi-value {
  font-family: var(--font); font-weight: 700;
  font-size: 24px; letter-spacing: -0.03em;
}
.kpi-change { font-size: 10.5px; margin-top: 3px; }
.kpi-change.up { color: #5adc72; }
.kpi-change.dn { color: #ff7070; }

.chart-area {
  background: rgba(8,5,20,0.80);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  flex: 1; position: relative; overflow: hidden; min-height: 130px;
}
.chart-label {
  font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
svg.line-chart { width:100%; height:84px; }
.chart-line { fill:none; stroke:url(#lineGrad); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.chart-area-fill { fill:url(#areaGrad); }

.workstream-list {
  background: rgba(8,5,20,0.80);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 16px;
}
.pipeline-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 11px;
}
.pipeline-row:last-child { border-bottom: none; }
.pipeline-name { color: rgba(255,255,255,0.65); flex:1; }
.pipeline-stage {
  font-size: 9.5px; padding: 2px 7px; border-radius: 10px;
  background: rgba(152,85,255,0.14); color: #c090ff;
  margin: 0 10px; white-space: nowrap;
}
.pipeline-stage.s2 { background: rgba(90,220,114,0.11); color: #5adc72; }
.pipeline-stage.s3 { background: rgba(255,200,60,0.10); color: #ffd060; }
.pipeline-pct { font-size: 11px; color: rgba(255,255,255,0.45); width: 34px; text-align:right; }

/* Right panel */
.dash-right {
  border-left: 1px solid var(--border);
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.panel-label {
  font-size: 9px; text-transform: uppercase;
  letter-spacing: 0.13em; color: rgba(255,255,255,0.22); margin-bottom: 3px;
}
.insight-card {
  background: rgba(8,5,20,0.82);
  border: 1px solid var(--border);
  border-radius: 9px; padding: 12px 13px;
}
.insight-title { font-size: 11px; color: rgba(255,255,255,0.75); font-weight: 500; margin-bottom: 4px; }
.insight-val {
  font-family: var(--font); font-weight: 700;
  font-size: 20px; letter-spacing: -0.03em;
}
.insight-meta { font-size: 10px; color: var(--muted); margin-top: 2px; }
.mini-bars { display:flex; gap:3px; align-items:flex-end; height:32px; margin-top:7px; }
.mini-bar { flex:1; border-radius:3px 3px 0 0; background:rgba(152,85,255,0.22); }
.mini-bar.hi { background:rgba(152,85,255,0.65); }

/* Clients */
.clients-strip {
  width: 1080px; margin-top: 44px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  animation: fadeUp 0.85s 0.58s ease both;
}
.clients-label {
  font-size: 10.5px; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.20);
}
.clients-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.client-name {
  font-family: var(--font); font-weight: 700;
  font-size: 12.5px; letter-spacing: 0.09em;
  color: rgba(255,255,255,0.16);
  text-transform: uppercase;
  transition: color 0.2s; cursor: default;
}
.client-name:hover { color: rgba(255,255,255,0.42); }
.client-sep { width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,0.09); }

/* Animations */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* â”€â”€â”€ GLOBAL BG LAYER â”€â”€â”€ */
#page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Dot grid pattern */
#page-bg .pg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 0%, transparent 90%);
  opacity: 0.30;
}

/* Slow-drifting large orbs */
#page-bg .pg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  will-change: transform, opacity;
}
#page-bg .pg-orb-1 {
  width: 900px; height: 900px;
  left: -200px; top: 5%;
  background: radial-gradient(circle, #5820a0 0%, transparent 70%);
  opacity: 0.17;
  animation: pgDrift1 22s ease-in-out infinite;
}
#page-bg .pg-orb-2 {
  width: 700px; height: 700px;
  right: -150px; top: 25%;
  background: radial-gradient(circle, #3010a0 0%, transparent 70%);
  opacity: 0.15;
  animation: pgDrift2 28s ease-in-out infinite;
}
#page-bg .pg-orb-3 {
  width: 600px; height: 600px;
  left: 20%; top: 55%;
  background: radial-gradient(circle, #7030c0 0%, transparent 70%);
  opacity: 0.13;
  animation: pgDrift3 34s ease-in-out infinite;
}
#page-bg .pg-orb-4 {
  width: 500px; height: 500px;
  right: 10%; top: 75%;
  background: radial-gradient(circle, #4020b0 0%, transparent 70%);
  opacity: 0.11;
  animation: pgDrift4 26s ease-in-out infinite;
}

@keyframes pgDrift1 {
  0%,100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(80px, 60px) scale(1.08); }
  66%      { transform: translate(-40px, 100px) scale(0.95); }
}
@keyframes pgDrift2 {
  0%,100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-70px, 80px) scale(1.10); }
  70%      { transform: translate(40px, -60px) scale(0.92); }
}
@keyframes pgDrift3 {
  0%,100% { transform: translate(0, 0) scale(1); }
  30%      { transform: translate(60px, -80px) scale(1.06); }
  60%      { transform: translate(-80px, 40px) scale(1.12); }
}
@keyframes pgDrift4 {
  0%,100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-60px, -70px) scale(1.08); }
}

/* Animated noise grain overlay */
#page-bg .pg-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.24;
}

/* Floating star particles */
#page-bg .pg-stars {
  position: absolute; inset: 0;
}
.pg-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: pgStarPulse linear infinite;
}

@keyframes pgStarPulse {
  0%,100% { opacity: var(--star-min); transform: scale(1); }
  50%      { opacity: var(--star-max); transform: scale(1.6); }
}

/* Horizontal scan line that sweeps the whole page slowly */
#page-bg .pg-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(152,85,255,0.18) 30%, rgba(152,85,255,0.25) 50%, rgba(152,85,255,0.18) 70%, transparent 100%);
  animation: pgScan 14s linear infinite;
  top: 0;
}
@keyframes pgScan {
  0%   { top: -2px; opacity: 0; }
  3%   { opacity: 1; }
  97%  { opacity: 1; }
  100% { top: 100vh; opacity: 0; }
}

/* Ensure all body content sits above the bg */
.nav-outer, section, .trust-bar-outer { position: relative; z-index: 2; }

/* Sections need a semi-transparent backdrop so cubes read as background, not overlay */
.hero         { isolation: isolate; }
.solutions    { isolation: isolate; }
.sol-overview { isolation: isolate; }
.cs-section   { isolation: isolate; }

/* â”€â”€â”€ SOLUTIONS WRAPPER â”€â”€â”€ */
.solutions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 50px 120px;
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* section heading */
.sol-heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 52px;
}
.sol-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid var(--border-hi);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-hi);
}
.sol-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--purple-hi);
  box-shadow: 0 0 6px var(--purple-hi);
}
.sol-heading {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.035em;
  text-align: center;
  background: linear-gradient(170deg, #fff 52%, #c09aee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 560px;
}
.sol-subhead {
  font-size: 15px;
  line-height: 25px;
  color: rgba(255,255,255,0.68);
  text-align: center;
  max-width: 480px;
  letter-spacing: -0.01em;
}

/* â”€â”€â”€ BENTO ROWS â”€â”€â”€ */
.bento-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  width: 1100px;
  height: 380px;
  margin-bottom: 10px;
}
.bento-row:last-child { margin-bottom: 0; }

/* â”€â”€â”€ CARD (text card) â”€â”€â”€ */
.bento-card {
  flex: 0 0 346px;
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--border-hi);
  background: rgba(6,3,18,0.84);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 32px 32px;
  transition: border-color 0.22s;
}
.bento-card:hover { border-color: rgba(152,85,255,0.45); }

/* card ambient glow on hover */
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(120,50,220,0.08) 0%, transparent 70%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-card:hover::before { opacity: 1; }

/* visual area inside card */
.card-visual {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 58%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* card text */
.card-text { position: relative; z-index: 2; }
.card-number {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-hi);
  opacity: 0.8;
  margin-bottom: 8px;
}
.card-title {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 22px;
}
.card-desc {
  font-size: 13px;
  line-height: 21px;
  color: rgba(255,255,255,0.70);
  letter-spacing: -0.01em;
}
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(152,85,255,0.12);
  border: 1px solid rgba(152,85,255,0.22);
  font-size: 10px;
  font-weight: 500;
  color: #c090ff;
  letter-spacing: 0.04em;
}

/* â”€â”€â”€ WIDE CARD (image card) â”€â”€â”€ */
.bento-wide {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #060112 0%, #1a0a3c 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  transition: border-color 0.22s;
}
.bento-wide:hover { border-color: rgba(152,85,255,0.4); }

/* gradient overlay on wide card */
.bento-wide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(179deg, rgba(3,1,10,0.10) 24%, rgba(14,5,42,0.95) 92%);
  pointer-events: none;
}

/* wide card inner UI mockup */
.wide-mockup {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
}

/* â”€â”€â”€ MOCKUP UI STYLES â”€â”€â”€ */

/* App-window chrome */
.mock-chrome {
  position: absolute;
  top: 18px; left: 18px; right: 18px;
  background: rgba(10,4,28,0.92);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  overflow: hidden;
}
.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-dot { width: 9px; height: 9px; border-radius: 50%; }
.mock-dot-r { background: #ff5f57; }
.mock-dot-y { background: #febc2e; }
.mock-dot-g { background: #28c840; }
.mock-tab {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-left: 10px;
  letter-spacing: 0.02em;
}
.mock-tab.active { color: rgba(255,255,255,0.80); }

/* Metric grid inside mockup */
.mock-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.mock-row { display: flex; gap: 8px; }
.mock-metric {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 7px;
  padding: 10px 12px;
}
.mock-metric-label { font-size: 9px; color: rgba(255,255,255,0.30); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 4px; }
.mock-metric-val { font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.mock-metric-sub { font-size: 9px; margin-top: 2px; }
.mock-metric-sub.up { color: #5adc72; }
.mock-metric-sub.dn { color: #ff7070; }

/* Mini bar chart inside mockup */
.mock-chart { display: flex; align-items: flex-end; gap: 3px; height: 38px; }
.mock-bar { flex:1; border-radius: 3px 3px 0 0; background: rgba(152,85,255,0.25); }
.mock-bar.hi { background: rgba(152,85,255,0.70); }

/* Pipeline list inside mockup */
.mock-list-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 10.5px;
}
.mock-list-item:last-child { border-bottom: none; }
.mock-item-label { color: rgba(255,255,255,0.60); }
.mock-item-badge {
  font-size: 9px; padding: 2px 7px; border-radius: 10px;
  background: rgba(152,85,255,0.15); color: #c090ff;
}
.mock-item-badge.s2 { background: rgba(90,220,114,0.12); color: #5adc72; }
.mock-item-badge.s3 { background: rgba(255,200,60,0.10); color: #ffd060; }

/* SVG mini chart */
.mock-svg { width:100%; height:52px; }
.mock-svg-line { fill:none; stroke:url(#mLineGrad); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.mock-svg-area { fill:url(#mAreaGrad); }

/* Terminal style mockup */
.mock-terminal {
  position: absolute;
  top: 18px; left: 18px; right: 18px;
  background: rgba(6,2,18,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
}
.mock-term-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-term-title { font-size: 10px; color: rgba(255,255,255,0.35); margin-left: 8px; font-family: var(--font); }
.mock-term-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 5px; }
.term-line { font-size: 10.5px; line-height: 17px; }
.term-prompt { color: var(--purple-hi); }
.term-cmd { color: rgba(255,255,255,0.80); }
.term-out { color: rgba(255,255,255,0.40); }
.term-out.ok { color: #5adc72; }
.term-out.warn { color: #ffd060; }
.term-cursor {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--purple-hi);
  vertical-align: middle;
  border-radius: 1px;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* 3-D shape placeholders (CSS art) */
.shape-ring {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 14px solid rgba(200,160,255,0.25);
  box-shadow:
    0 0 0 1px rgba(200,160,255,0.12),
    inset 0 0 30px rgba(152,85,255,0.15),
    0 0 40px rgba(152,85,255,0.25);
  position: relative;
}
.shape-ring::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(200,160,255,0.2), transparent 60%);
}

.shape-hex {
  width: 120px; height: 138px;
  background: linear-gradient(135deg, rgba(152,85,255,0.18), rgba(80,20,180,0.30));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 40px rgba(152,85,255,0.3);
  position: relative;
}

.shape-prism {
  width: 0; height: 0;
  border-left: 56px solid transparent;
  border-right: 56px solid transparent;
  border-bottom: 120px solid rgba(100,40,200,0.25);
  filter: drop-shadow(0 0 20px rgba(152,85,255,0.4));
  position: relative;
}
.shape-prism::after {
  content: '';
  position: absolute;
  left: -40px; top: 20px;
  width: 0; height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 85px solid rgba(180,100,255,0.12);
}

.shape-cube {
  width: 110px; height: 110px;
  background: linear-gradient(135deg, rgba(80,20,180,0.35), rgba(152,85,255,0.18));
  border-radius: 18px;
  border: 1px solid rgba(152,85,255,0.30);
  box-shadow: 0 0 35px rgba(152,85,255,0.28), inset 0 0 20px rgba(200,160,255,0.08);
  transform: rotate(18deg);
}

.shape-sphere {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 36%, rgba(200,160,255,0.55), rgba(80,20,180,0.40) 60%, transparent 80%);
  border: 1px solid rgba(152,85,255,0.28);
  box-shadow: 0 0 40px rgba(152,85,255,0.28), inset 0 0 30px rgba(120,50,220,0.20);
}

.shape-wave {
  width: 180px; height: 80px;
  background: transparent;
  position: relative;
  overflow: visible;
}

/* wide card bottom text */
.wide-text {
  position: relative;
  z-index: 5;
}
.wide-title {
  font-size: 15.5px; font-weight: 600;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 5px;
}
.wide-number {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple-hi); opacity: 0.8; margin-bottom: 7px;
}
.wide-desc {
  font-size: 13px; line-height: 21px;
  color: rgba(255,255,255,0.68); letter-spacing: -0.01em;
  max-width: 360px;
}
.wide-tag {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 11px; padding: 3px 10px;
  border-radius: 20px;
  background: rgba(152,85,255,0.12);
  border: 1px solid rgba(152,85,255,0.22);
  font-size: 10px; font-weight: 500;
  color: #c090ff; letter-spacing: 0.04em;
}

/* â”€â”€â”€ SOLUTIONS OVERVIEW â”€â”€â”€ */
.sol-overview {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 48px 84px;
  position: relative;
  overflow: hidden;
}

/* Ambient background glow â€” handled by global page bg */

/* Section header */
.sol-ov-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
  position: relative; z-index: 2;
  text-align: center;
}
.sol-ov-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border: 1px solid rgba(152,85,255,0.35);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9855ff;
  background: rgba(152,85,255,0.06);
}
.sol-ov-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #9855ff;
  box-shadow: 0 0 8px rgba(152,85,255,0.9);
}
.sol-ov-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  background: linear-gradient(175deg, #ffffff 55%, #c09aee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sol-ov-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  letter-spacing: -0.01em;
  max-width: 520px;
  line-height: 1.7;
}

/* Grid */
.sol-ov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1180px;
  position: relative; z-index: 2;
}

/* Card */
.sol-ov-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 28px 30px;
  background: rgba(7,4,18,0.82);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.28s, background 0.28s, transform 0.22s;
}
.sol-ov-card:hover {
  border-color: rgba(152,85,255,0.40);
  background: rgba(22,10,46,0.92);
  transform: translateY(-4px);
}

/* Card top glow on hover */
.sol-ov-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(152,85,255,0.55), transparent);
  opacity: 0;
  transition: opacity 0.28s;
}
.sol-ov-card:hover::before { opacity: 1; }

/* Corner accent */
.sol-ov-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(152,85,255,0.06), transparent 70%);
  pointer-events: none;
}

/* Card icon */
.sol-ov-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(152,85,255,0.10);
  border: 1px solid rgba(152,85,255,0.22);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.28s, border-color 0.28s, box-shadow 0.28s;
  position: relative; overflow: hidden;
}
.sol-ov-card:hover .sol-ov-icon {
  background: rgba(152,85,255,0.20);
  border-color: rgba(152,85,255,0.50);
  box-shadow: 0 0 24px rgba(152,85,255,0.28);
}
.sol-ov-icon svg {
  width: 26px; height: 26px;
  stroke: #9855ff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.28s;
  position: relative; z-index: 1;
}
.sol-ov-card:hover .sol-ov-icon svg { stroke: #c090ff; }

/* Uploaded icon image shown inside icon box */
.sol-ov-icon-img {
  width: 32px; height: 32px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.6) saturate(0.8);
  position: relative; z-index: 1;
}

/* Card body */
.sol-ov-card-body {
  display: flex; flex-direction: column; gap: 10px;
}
.sol-ov-card-title {
  font-family: var(--font);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.92);
  line-height: 1.25;
}
.sol-ov-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.64);
  letter-spacing: -0.005em;
}

/* Card tag */
.sol-ov-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: rgba(152,85,255,0.10);
  border: 1px solid rgba(152,85,255,0.20);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(152,85,255,0.80);
  align-self: flex-start;
  margin-top: auto;
}

/* Highlight card (first one, larger) */
.sol-ov-card.featured {
  grid-column: span 1;
  background: rgba(22,10,46,0.88);
  border-color: rgba(152,85,255,0.22);
}

@media (max-width: 900px) {
  .sol-ov-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .sol-ov-grid { grid-template-columns: 1fr; }
}

/* â”€â”€â”€ CASE STUDIES WRAPPER â”€â”€â”€ */
.cs-section {
  width: 100%;
  padding: 78px 48px 90px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Background: faint grid lines â€” handled by global page bg */
/* Purple ambient pool â€” handled by global page bg */

/* Header */
.cs-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.cs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border: 1px solid rgba(152,85,255,0.35);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9855ff;
  background: rgba(152,85,255,0.06);
}
.cs-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #9855ff;
  box-shadow: 0 0 8px rgba(152,85,255,0.9);
  animation: csDot 2.4s ease-in-out infinite;
}
@keyframes csDot {
  0%,100% { box-shadow: 0 0 8px rgba(152,85,255,0.8); }
  50%      { box-shadow: 0 0 18px rgba(152,85,255,1); }
}
.cs-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 46px);
  letter-spacing: -0.035em;
  background: linear-gradient(170deg, #fff 50%, #c09aee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.cs-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  max-width: 480px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

/* â”€â”€â”€ UNIQUE LAYOUT: STACKED RUNWAY â”€â”€â”€ */
.cs-runway {
  width: 100%;
  max-width: 1160px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
}

/* Vertical connector line */
.cs-runway::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(152,85,255,0.30) 15%,
    rgba(152,85,255,0.30) 85%,
    transparent 100%
  );
  transform: translateX(-50%);
}

/* â”€â”€â”€ EACH CASE STUDY ROW â”€â”€â”€ */
.cs-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  padding: 0 0 56px;
  gap: 0;
}
.cs-row:last-child { padding-bottom: 0; }

/* Alternate: odd rows put content left, even rows right */
.cs-row.flip .cs-content { order: 3; text-align: right; align-items: flex-end; }
.cs-row.flip .cs-stat-panel { order: 1; }
.cs-row.flip .cs-node-col { order: 2; }

/* Node column â€” center dot + index */
.cs-node-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 3;
}
.cs-node {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #05020f;
  border: 1px solid rgba(152,85,255,0.50);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cs-node::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(152,85,255,0.14);
}
.cs-node-num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #9855ff;
}

/* Content side */
.cs-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 40px;
}
.cs-domain-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  border: 1px solid rgba(152,85,255,0.22);
  border-radius: 20px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(152,85,255,0.75);
  background: rgba(152,85,255,0.07);
}
.cs-project-name {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.92);
  line-height: 1.2;
}
.cs-problem {
  font-size: 13.5px;
  color: rgba(255,255,255,0.64);
  line-height: 1.65;
  letter-spacing: -0.005em;
  max-width: 360px;
}
.cs-row.flip .cs-problem { margin-left: auto; }

/* Stat panel side */
.cs-stat-panel {
  position: relative;
  padding: 0 40px;
}
.cs-stat-card {
  background: rgba(7,4,18,0.84);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.cs-stat-card:hover {
  border-color: rgba(152,85,255,0.40);
  background: rgba(22,10,46,0.90);
}
/* Top purple glow line */
.cs-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(152,85,255,0.60), transparent);
}
/* BG glow */
.cs-stat-card::after {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(152,85,255,0.07), transparent 70%);
  pointer-events: none;
}

.cs-result-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(152,85,255,0.70);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cs-result-label::before {
  content: '';
  display: inline-block;
  width: 14px; height: 1px;
  background: rgba(152,85,255,0.60);
}

.cs-result-stat {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(120deg, #fff 30%, #c090ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.cs-result-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  letter-spacing: -0.005em;
}

/* Small metric pills row */
.cs-metric-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.cs-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
}
.cs-metric-pill .up { color: #5adc72; }
.cs-metric-pill .hl { color: #c090ff; }

/* Divider between rows */
.cs-row-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent 100%);
  margin-bottom: 56px;
}

@media (max-width: 860px) {
  .cs-runway::before { display: none; }
  .cs-row { grid-template-columns: 1fr; gap: 24px; }
  .cs-row.flip .cs-content { order: 1; text-align: left; align-items: flex-start; }
  .cs-row.flip .cs-stat-panel { order: 2; }
  .cs-row.flip .cs-node-col { order: 0; }
  .cs-node-col { flex-direction: row; }
  .cs-content, .cs-stat-panel { padding: 0; }
  .cs-row-divider { margin-bottom: 32px; }
}

.industries {
  width: 100%;
  padding: 82px 0 94px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.ind-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
  text-align: center;
  position: relative; z-index: 2;
}
.ind-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border: 1px solid rgba(152,85,255,0.35);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9855ff;
  background: rgba(152,85,255,0.06);
}
.ind-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #9855ff;
  box-shadow: 0 0 8px rgba(152,85,255,0.9);
}
.ind-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  background: linear-gradient(175deg, #ffffff 55%, #c09aee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ind-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  letter-spacing: -0.01em;
  max-width: 460px;
  line-height: 1.7;
}

/* â”€â”€ The runway track â”€â”€ */
.ind-track {
  width: 100%;
  max-width: 1200px;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

/* Horizontal spine line */
.ind-spine {
  position: absolute;
  top: 50%;
  left: 48px;
  right: 48px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(152,85,255,0.20) 8%,
    rgba(152,85,255,0.35) 50%,
    rgba(152,85,255,0.20) 92%,
    transparent 100%
  );
  transform: translateY(-50%);
}

/* Items flex row */
.ind-items {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Each industry item */
.ind-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 12px;
  cursor: default;
}

/* Alternating up/down: odd items go up, even go down */
.ind-item:nth-child(odd)  { flex-direction: column; }
.ind-item:nth-child(even) { flex-direction: column-reverse; }

/* The content bubble */
.ind-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 20px 24px;
  background: rgba(7,4,18,0.84);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.02);
  border-radius: 20px;
  width: 100%;
  transition: background 0.28s, border-color 0.28s, transform 0.28s;
  position: relative;
  overflow: hidden;
}
.ind-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(152,85,255,0.50), transparent);
  opacity: 0;
  transition: opacity 0.28s;
}
.ind-item:hover .ind-bubble {
  background: rgba(14,8,30,0.94);
  border-color: rgba(152,85,255,0.42);
  transform: translateY(-6px);
}
.ind-item:nth-child(even):hover .ind-bubble {
  transform: translateY(6px);
}
.ind-item:hover .ind-bubble::before { opacity: 1; }

/* Icon box */
.ind-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(152,85,255,0.12);
  border: 1px solid rgba(152,85,255,0.26);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.28s, border-color 0.28s, box-shadow 0.28s;
  flex-shrink: 0;
}
.ind-item:hover .ind-icon {
  background: rgba(152,85,255,0.18);
  border-color: rgba(152,85,255,0.45);
  box-shadow: 0 0 20px rgba(152,85,255,0.22);
}
.ind-icon svg {
  width: 22px; height: 22px;
  stroke: rgba(255,255,255,0.84);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.28s;
}
.ind-item:hover .ind-icon svg { stroke: #fff; }

.ind-name {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
  text-align: center;
  line-height: 1.3;
  transition: color 0.28s;
}
.ind-item:hover .ind-name { color: #fff; }

.ind-desc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.76);
  text-align: center;
  line-height: 1.6;
  letter-spacing: -0.005em;
  transition: color 0.28s;
}
.ind-item:hover .ind-desc { color: rgba(255,255,255,0.86); }

/* The vertical stem connecting bubble to spine */
.ind-stem {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(152,85,255,0.30), rgba(152,85,255,0.08));
  position: relative;
}
.ind-item:nth-child(even) .ind-stem {
  background: linear-gradient(to top, rgba(152,85,255,0.30), rgba(152,85,255,0.08));
}

/* Node dot on the spine */
.ind-node {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(10,4,30,0.95);
  border: 1px solid rgba(152,85,255,0.55);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.28s, box-shadow 0.28s;
}
.ind-node::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: rgba(152,85,255,0.50);
  transition: background 0.28s;
}
.ind-item:hover .ind-node {
  border-color: rgba(152,85,255,0.90);
  box-shadow: 0 0 12px rgba(152,85,255,0.45);
}
.ind-item:hover .ind-node::after { background: rgba(152,85,255,1); }

/* Number badge */
.ind-num {
  position: absolute;
  top: -9px; right: -9px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(10,4,30,0.95);
  border: 1px solid rgba(152,85,255,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(152,85,255,0.80);
}

@media (max-width: 860px) {
  .ind-spine { display: none; }
  .ind-items { flex-direction: column; gap: 16px; }
  .ind-item, .ind-item:nth-child(even) { flex-direction: column; }
  .ind-stem { display: none; }
  .ind-node { display: none; }
  .ind-bubble { padding: 22px 18px; }
}

/* â”€â”€â”€ TECH STACK SECTION â”€â”€â”€ */
.tech-stack {
  width: 100%;
  padding: 88px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.ts-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
  text-align: center;
  position: relative; z-index: 2;
}
.ts-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border: 1px solid rgba(152,85,255,0.35);
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9855ff;
  background: rgba(152,85,255,0.06);
}
.ts-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #9855ff;
  box-shadow: 0 0 8px rgba(152,85,255,0.9);
}
.ts-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  background: linear-gradient(175deg, #ffffff 55%, #c09aee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ts-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  letter-spacing: -0.01em;
  max-width: 500px;
  line-height: 1.7;
}

/* â”€â”€ Tab selector â”€â”€ */
.ts-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: rgba(7,4,18,0.72);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 56px;
  position: relative; z-index: 2;
}
.ts-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: color 0.22s, background 0.22s;
  border: 1px solid transparent;
  user-select: none;
  white-space: nowrap;
}
.ts-tab svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity 0.22s;
}
.ts-tab:hover { color: rgba(255,255,255,0.75); }
.ts-tab.active {
  color: #fff;
  background: rgba(152,85,255,0.14);
  border-color: rgba(152,85,255,0.30);
}
.ts-tab.active svg { opacity: 1; }

/* â”€â”€ Panel container â”€â”€ */
.ts-panels {
  width: 100%;
  max-width: 1180px;
  padding: 0 48px;
  position: relative; z-index: 2;
}

/* Each panel */
.ts-panel {
  display: none;
  animation: tsPanelIn 0.38s ease both;
}
.ts-panel.active { display: block; }

@keyframes tsPanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* â”€â”€ Panel inner layout: wide label strip + tech grid â”€â”€ */
.ts-panel-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(6,3,18,0.82);
}

/* Left: category label column */
.ts-panel-label-col {
  border-right: 1px solid rgba(255,255,255,0.07);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(18,8,38,0.88);
  position: relative;
}
.ts-panel-label-col::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(152,85,255,0.40) 40%, rgba(152,85,255,0.40) 60%, transparent);
}
.ts-label-eyebrow {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(152,85,255,0.65);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ts-label-eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px; height: 1px;
  background: rgba(152,85,255,0.55);
}
.ts-label-main {
  font-family: var(--font);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.90);
  line-height: 1.2;
}
.ts-label-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  letter-spacing: -0.005em;
  margin-top: 10px;
}
.ts-label-count {
  margin-top: auto;
  padding-top: 32px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(152,85,255,0.50);
}
.ts-label-count span {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.70);
  display: block;
  margin-bottom: 2px;
}

/* Right: tech tiles grid */
.ts-grid {
  padding: 32px 36px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 12px;
  align-content: start;
}

/* Each tech tile */
.ts-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  background: rgba(8,5,22,0.86);
  cursor: default;
  transition: border-color 0.24s, background 0.24s, transform 0.20s, box-shadow 0.24s;
  position: relative;
  overflow: hidden;
}
.ts-tile::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(152,85,255,0.40), transparent);
  opacity: 0;
  transition: opacity 0.24s;
}
.ts-tile:hover {
  border-color: rgba(152,85,255,0.32);
  background: rgba(18,9,42,0.94);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 1px rgba(152,85,255,0.10);
}
.ts-tile:hover::after { opacity: 1; }

/* Icon container */
.ts-tile-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(152,85,255,0.08);
  border: 1px solid rgba(152,85,255,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.24s, border-color 0.24s;
}
.ts-tile:hover .ts-tile-icon {
  background: rgba(152,85,255,0.16);
  border-color: rgba(152,85,255,0.38);
}
.ts-tile-icon svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: rgba(255,255,255,0.65);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.24s;
}
.ts-tile:hover .ts-tile-icon svg { stroke: rgba(255,255,255,0.90); }

.ts-tile-name {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.72);
  transition: color 0.24s;
  line-height: 1.3;
}
.ts-tile:hover .ts-tile-name { color: rgba(255,255,255,0.95); }

.ts-tile-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(152,85,255,0.60);
  margin-top: auto;
}

/* Featured tile (first in each category) */
.ts-tile.featured {
  background: rgba(20,10,46,0.92);
  border-color: rgba(152,85,255,0.20);
}

/* Proficiency bar */
.ts-tile-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2px;
}
.ts-tile-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(152,85,255,0.55), rgba(180,120,255,0.80));
  transition: width 0.6s 0.1s ease;
}

@media (max-width: 900px) {
  .ts-panel-inner { grid-template-columns: 1fr; }
  .ts-panel-label-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .ts-tabs { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .ts-panels { padding: 0 20px; }
  .ts-grid { grid-template-columns: repeat(2, 1fr); padding: 20px; }
}

/* â”€â”€ Shared: all section canvas overlays â”€â”€ */
.sec-anim-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
/* Ensure content inside animated sections sits above canvas */
.solutions      > *:not(.sec-anim-canvas),
.sol-overview   > *:not(.sec-anim-canvas),
.cs-section     > *:not(.sec-anim-canvas) { position: relative; z-index: 2; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SOLUTIONS: Spinning Diamond Wireframes
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.diamond-scene {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 0;
  perspective: 1000px;
}
.dw-wrapper {
  position: absolute;
  transform-style: preserve-3d;
  animation: dwFloat linear infinite;
}
.dw-inner {
  position: relative;
  transform-style: preserve-3d;
  animation: dwSpin linear infinite;
}
/* 8 triangular faces of an octahedron drawn as bordered SVGs */
.dw-face {
  position: absolute;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.dw-face svg { display: block; }

@keyframes dwFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-22px); }
  100% { transform: translateY(0px); }
}
@keyframes dwSpin {
  from { transform: rotateX(var(--rx0)) rotateY(var(--ry0)) rotateZ(var(--rz0)); }
  to   { transform: rotateX(var(--rx1)) rotateY(var(--ry1)) rotateZ(var(--rz1)); }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SOLUTIONS OVERVIEW: Drifting Ring Halos
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ring-halo-scene {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 0;
}
.rh-item {
  position: absolute;
  border-radius: 50%;
  animation: rhFloat ease-in-out infinite, rhSpin linear infinite;
}
.rh-item::before,
.rh-item::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
/* outer ring */
.rh-item::before {
  inset: 0;
  border: 1px solid var(--rh-color, rgba(152,85,255,0.30));
  border-radius: 50%;
  box-shadow: 0 0 12px var(--rh-glow, rgba(152,85,255,0.12));
}
/* inner ring */
.rh-item::after {
  inset: 22%;
  border: 1px dashed var(--rh-color2, rgba(152,85,255,0.18));
  border-radius: 50%;
  animation: rhSpinInner linear infinite;
  animation-duration: var(--rh-inner-dur, 12s);
}
@keyframes rhFloat {
  0%,100% { transform: translateY(0) scale(1); opacity: var(--rh-o1); }
  50%      { transform: translateY(var(--rh-dy, -20px)) scale(var(--rh-sc,1.04)); opacity: var(--rh-o2); }
}
@keyframes rhSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes rhSpinInner {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   CASE STUDIES: Floating Dot Constellations
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.constellation-scene {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 0;
}
.cs-node-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(152,85,255,0.55);
  animation: csDotFloat ease-in-out infinite, csDotPulse ease-in-out infinite;
  box-shadow: 0 0 8px rgba(152,85,255,0.35);
}
.cs-node-dot.large {
  background: rgba(152,85,255,0.25);
  border: 1px solid rgba(152,85,255,0.35);
  box-shadow: 0 0 20px rgba(152,85,255,0.20);
}
.cs-conn-line {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(152,85,255,0.25), transparent);
  animation: csLineFlicker ease-in-out infinite;
}
@keyframes csDotFloat {
  0%,100% { transform: translate(0,0); }
  33%     { transform: translate(var(--cx, 6px), var(--cy, -8px)); }
  66%     { transform: translate(var(--cx2,-4px), var(--cy2, 5px)); }
}
@keyframes csDotPulse {
  0%,100% { opacity: var(--co1, 0.55); }
  50%     { opacity: var(--co2, 0.85); }
}
@keyframes csLineFlicker {
  0%,100% { opacity: 0.18; }
  50%     { opacity: 0.45; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY CHOOSE US
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.wcu-section {
  width: 100%;
  padding: 82px 0 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* background glow blob */
.wcu-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(130,60,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.wcu-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-hi);
  margin-bottom: 18px;
  opacity: 0.85;
}

.wcu-heading {
  font-family: var(--font);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.1;
}

.wcu-heading em {
  font-style: normal;
  color: var(--purple-hi);
}

.wcu-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  text-align: center;
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* â”€â”€ Card rail â”€â”€ */
.wcu-rail {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  padding: 0 32px;
}

.wcu-card {
  width: 82px;
  flex-shrink: 0;
  flex-grow: 0;
  height: 420px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, width 0.55s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

/* Collapsed card ambient glow orb */
.wcu-card::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  left: 50%; top: 38%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(152,85,255,0.16) 0%, rgba(100,40,200,0.06) 50%, transparent 70%);
  border-radius: 50%;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.wcu-card.active::after { opacity: 0; }

.wcu-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(152,85,255,0.09) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.wcu-card:hover::before,
.wcu-card.active::before {
  opacity: 1;
}

.wcu-card.active {
  width: 480px;
  flex-shrink: 0;
  border-color: var(--accent-border);
  box-shadow: 0 0 40px rgba(130,60,255,0.12), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* â”€â”€ Collapsed card inner layout â”€â”€ */
.wcu-card-collapsed {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 22px;
  z-index: 2;
  transition: opacity 0.25s ease;
}

.wcu-card.active .wcu-card-collapsed {
  opacity: 0;
  pointer-events: none;
}

/* Small dot separator lines */
.wcu-card-collapsed-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(152,85,255,0.4), transparent);
}

/* Metric chip (stat shown on closed card) */
.wcu-card-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.wcu-card-metric-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--purple-hi);
  letter-spacing: -0.02em;
  line-height: 1;
}

.wcu-card-metric-unit {
  font-size: 9px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Icon in collapsed */
.wcu-card-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(152,85,255,0.12);
  border: 1px solid rgba(152,85,255,0.28);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 12px rgba(152,85,255,0.15);
}

/* Vertical label */
.wcu-card-vtitle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcu-card-vtitle-inner {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color 0.2s;
}

.wcu-card:hover .wcu-card-vtitle-inner {
  color: rgba(255,255,255,0.80);
}

/* Expanded content */
.wcu-card-content {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
  pointer-events: none;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wcu-card.active .wcu-card-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wcu-exp-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(152,85,255,0.15);
  border: 1px solid rgba(152,85,255,0.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 0 18px rgba(152,85,255,0.12);
}

.wcu-exp-title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 14px;
}

.wcu-exp-desc {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.68);
  margin-bottom: 32px;
}

.wcu-exp-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.wcu-exp-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.wcu-exp-points li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple-hi);
  margin-top: 7px;
  box-shadow: 0 0 6px rgba(152,85,255,0.6);
}

.wcu-exp-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-hi);
  text-decoration: none;
  transition: gap 0.2s ease;
  cursor: pointer;
  background: none; border: none; padding: 0; font-family: var(--font);
}

.wcu-exp-cta:hover { gap: 12px; }

.wcu-exp-cta svg { transition: transform 0.2s ease; }
.wcu-exp-cta:hover svg { transform: translateX(3px); }

/* Bottom stat row */
.wcu-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 1100px;
  padding-left: 32px;
  padding-right: 32px;
}

.wcu-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wcu-stat-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.wcu-stat-num span {
  color: var(--purple-hi);
}

.wcu-stat-label {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

@media (max-width: 820px) {
  .wcu-rail {
    flex-direction: column;
    align-items: center;
  }
  .wcu-card {
    width: 100% !important;
    height: 60px;
  }
  .wcu-card.active {
    width: 100% !important;
    height: 420px;
  }
  .wcu-card-collapsed {
    flex-direction: row;
    padding: 0 20px;
    justify-content: flex-start;
    gap: 14px;
  }
  .wcu-card-vtitle { writing-mode: horizontal-tb; }
  .wcu-card-vtitle-inner { writing-mode: horizontal-tb; transform: none; }
  .wcu-card-collapsed-line { width: 24px; height: 1px; }
  .wcu-card-metric { flex-direction: row; gap: 4px; align-items: baseline; }
  .wcu-stats { flex-wrap: wrap; gap: 28px; }
}

/* â”€â”€ Products/IP Section â”€â”€ */
.products-section {
  position: relative;
  width: 100%;
  padding: 92px 0 108px;
  overflow: hidden;
  background: var(--bg);
}

/* Ambient background glow */
.products-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 600px;
  background: radial-gradient(ellipse at 50% 0%, rgba(100,40,200,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.products-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at 50% 100%, rgba(80,30,160,0.11) 0%, transparent 65%);
  pointer-events: none;
}

/* â”€â”€ Section header â”€â”€ */
.prod-header {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.prod-header-left {}

.prod-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.prod-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-hi);
  box-shadow: 0 0 10px rgba(152,85,255,0.8);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 8px rgba(152,85,255,0.6); }
  50% { box-shadow: 0 0 18px rgba(152,85,255,1), 0 0 30px rgba(152,85,255,0.4); }
}
.prod-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-hi);
}

.prod-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 52px;
  line-height: 58px;
  letter-spacing: -0.04em;
  background: linear-gradient(160deg, #ffffff 40%, #b080ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 540px;
}

.prod-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 6px;
  flex-shrink: 0;
}

.prod-desc {
  max-width: 340px;
  text-align: right;
  font-size: 15px;
  line-height: 25px;
  color: rgba(255,255,255,0.66);
  letter-spacing: -0.01em;
}

.prod-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(152,85,255,0.38);
  border-radius: 10px;
  background: rgba(152,85,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.prod-header-cta:hover {
  background: rgba(152,85,255,0.18);
  border-color: rgba(152,85,255,0.65);
  color: #fff;
  transform: translateY(-1px);
}

/* â”€â”€ Main layout: 3-panel asymmetric â”€â”€ */
.prod-stage {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}

/* â”€â”€ Horizontal divider line â”€â”€ */
.prod-h-line {
  position: absolute;
  left: 48px; right: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.08) 80%, transparent 100%);
}

/* â”€â”€ Product panel base â”€â”€ */
.prod-panel {
  position: relative;
  padding: 34px 30px 28px;
  cursor: default;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0) 30%),
    rgba(8,4,22,0.88);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.prod-panel:nth-child(3) {
  border-right: none;
}

/* Panel hover glow */
.prod-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  border-radius: 24px;
}

.prod-panel::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  border: 1px solid transparent;
  opacity: 0;
  transition: opacity 0.35s ease, border-color 0.35s ease;
  pointer-events: none;
}

.prod-panel-1::before {
  background: radial-gradient(ellipse at 30% 40%, rgba(90,40,180,0.12) 0%, transparent 65%);
}
.prod-panel-2::before {
  background: radial-gradient(ellipse at 60% 30%, rgba(20,120,200,0.10) 0%, transparent 65%);
}
.prod-panel-3::before {
  background: radial-gradient(ellipse at 50% 40%, rgba(180,80,220,0.10) 0%, transparent 65%);
}

.prod-panel:hover::before { opacity: 1; }
.prod-panel:hover::after { opacity: 1; }
.prod-panel:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0) 35%),
    rgba(11,6,28,0.96);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.30);
}
.prod-panel-1:hover::after { border-color: rgba(152,85,255,0.26); }
.prod-panel-2:hover::after { border-color: rgba(60,160,255,0.24); }
.prod-panel-3:hover::after { border-color: rgba(190,100,255,0.24); }

/* â”€â”€ Product number â”€â”€ */
.prod-num {
  font-family: var(--font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.26);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.prod-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
}

/* â”€â”€ Product icon â”€â”€ */
.prod-icon-wrap {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.prod-panel:hover .prod-icon-wrap {
  transform: scale(1.06);
  box-shadow: 0 18px 30px rgba(0,0,0,0.28);
}

.prod-icon-1 {
  background: linear-gradient(135deg, rgba(60,20,120,0.9), rgba(90,35,180,0.7));
  border: 1px solid rgba(130,70,240,0.45);
  box-shadow: 0 0 20px rgba(90,35,180,0.3), inset 0 0 12px rgba(130,70,240,0.15);
}
.prod-icon-2 {
  background: linear-gradient(135deg, rgba(10,60,130,0.9), rgba(20,100,200,0.7));
  border: 1px solid rgba(40,140,240,0.45);
  box-shadow: 0 0 20px rgba(20,100,200,0.3), inset 0 0 12px rgba(40,140,240,0.15);
}
.prod-icon-3 {
  background: linear-gradient(135deg, rgba(100,20,160,0.9), rgba(150,40,220,0.7));
  border: 1px solid rgba(180,80,255,0.45);
  box-shadow: 0 0 20px rgba(150,40,220,0.3), inset 0 0 12px rgba(180,80,255,0.15);
}

/* â”€â”€ Product name â”€â”€ */
.prod-name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.1;
}

/* â”€â”€ Product tagline â”€â”€ */
.prod-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.prod-tagline-1 { color: rgba(130,80,220,0.9); }
.prod-tagline-2 { color: rgba(40,150,240,0.9); }
.prod-tagline-3 { color: rgba(170,80,240,0.9); }

/* â”€â”€ Product description â”€â”€ */
.prod-desc-text {
  font-size: 14px;
  line-height: 23px;
  color: rgba(255,255,255,0.70);
  letter-spacing: -0.005em;
  margin-bottom: 22px;
}

/* â”€â”€ Feature list â”€â”€ */
.prod-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
}
.prod-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.66);
  line-height: 20px;
}
.prod-feature-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.prod-feature-check-1 { background: rgba(100,50,200,0.25); border: 1px solid rgba(130,80,220,0.5); }
.prod-feature-check-2 { background: rgba(15,80,160,0.25); border: 1px solid rgba(40,140,240,0.5); }
.prod-feature-check-3 { background: rgba(130,40,180,0.25); border: 1px solid rgba(170,80,240,0.5); }

/* â”€â”€ Product metrics bar â”€â”€ */
.prod-metrics {
  display: flex;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 10px;
  background: rgba(255,255,255,0.02);
}
.prod-metric {
  flex: 1;
  padding: 14px 14px 13px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: rgba(10,6,26,0.88);
}
.prod-metric-val {
  font-family: var(--font);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.prod-metric-label {
  font-size: 10px;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* â”€â”€ Product CTA â”€â”€ */
.prod-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: gap 0.2s, transform 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.prod-cta:hover {
  gap: 12px;
  transform: translateX(2px);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.prod-cta-1 { color: rgba(152,85,255,0.85); }
.prod-cta-2 { color: rgba(60,160,255,0.85); }
.prod-cta-3 { color: rgba(190,100,255,0.85); }
.prod-cta:hover.prod-cta-1 { color: rgba(152,85,255,1); }
.prod-cta:hover.prod-cta-2 { color: rgba(60,160,255,1); }
.prod-cta:hover.prod-cta-3 { color: rgba(190,100,255,1); }

/* â”€â”€ Bottom strip: IP badge row â”€â”€ */
.prod-bottom-strip {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  margin-top: 64px;
}

.prod-strip-inner {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(8,5,20,0.80);
  position: relative;
  overflow: hidden;
}

.prod-strip-inner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--purple-hi), rgba(80,30,180,0.4));
  border-radius: 2px 0 0 2px;
}

.prod-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.prod-ip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(152,85,255,0.10);
  border: 1px solid rgba(152,85,255,0.28);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-hi);
  white-space: nowrap;
}

.prod-strip-text {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  letter-spacing: -0.01em;
  line-height: 1.5;
  max-width: 460px;
}
.prod-strip-text strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.prod-strip-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.prod-strip-stat {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.prod-strip-stat:last-child { border-right: none; }
.prod-strip-stat-val {
  font-family: var(--font);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 50%, #c090ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prod-strip-stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* â”€â”€ Decorative diagonal lines (top-right corner) â”€â”€ */
.prod-deco-lines {
  position: absolute;
  top: 0; right: 0;
  width: 260px; height: 260px;
  pointer-events: none;
  opacity: 0.06;
}

/* â”€â”€ Scroll-in animation â”€â”€ */
@keyframes prodFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.prod-animate {
  opacity: 0;
  animation: prodFadeUp 0.7s cubic-bezier(0.23,1,0.32,1) forwards;
}
.prod-panel-1 { animation-delay: 0.05s; }
.prod-panel-2 { animation-delay: 0.15s; }
.prod-panel-3 { animation-delay: 0.25s; }

/* â”€â”€ Vertical "PRODUCTS" label â”€â”€ */
.prod-vert-label {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.08);
  pointer-events: none;
  white-space: nowrap;
}

/* â”€â”€ Technology pill tags â”€â”€ */
.prod-tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.prod-tech-pill {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.52);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.prod-panel:hover .prod-tech-pill {
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.68);
  transform: translateY(-1px);
}

/* Wide panel variant for mobile */
@media (max-width: 900px) {
  .prod-stage {
    grid-template-columns: 1fr;
  }
  .prod-panel {
    border-right: 1px solid rgba(255,255,255,0.09);
  }
  .prod-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .prod-header-right {
    align-items: flex-start;
  }
  .prod-desc { text-align: left; }
  .prod-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .prod-title { font-size: 36px; line-height: 42px; }
}

/* â”€â”€ CTA Section â”€â”€ */
.cta-section {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 96px 0 104px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Large radial glow behind the text */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(110,45,220,0.22) 0%,
    rgba(80,20,180,0.10) 38%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
  animation: ctaGlowPulse 5s ease-in-out infinite;
}
@keyframes ctaGlowPulse {
  0%,100% { opacity: 0.8; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.06); }
}

/* Horizontal rule lines top and bottom */
.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.07) 30%, rgba(255,255,255,0.07) 70%, transparent 100%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  padding: 0 48px;
}

.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 32px;
  padding: 7px 18px;
  border: 1px solid rgba(152,85,255,0.25);
  border-radius: 40px;
  background: rgba(152,85,255,0.07);
}
.cta-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--purple-hi);
  box-shadow: 0 0 8px rgba(152,85,255,0.9);
  animation: pulseDot 2.4s ease-in-out infinite;
}
.cta-eyebrow-text {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--purple-hi);
}

.cta-headline {
  font-weight: 700;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  background: linear-gradient(170deg, #ffffff 30%, rgba(190,140,255,0.95) 75%, rgba(130,60,240,0.80) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 17px; line-height: 28px;
  color: rgba(255,255,255,0.66);
  letter-spacing: -0.015em;
  max-width: 520px;
  margin-bottom: 52px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Primary button */
.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, rgba(130,55,240,0.95) 0%, rgba(100,30,210,0.95) 100%);
  border: 1px solid rgba(180,120,255,0.40);
  border-radius: 12px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none; cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 4px 24px rgba(110,40,220,0.45),
    0 1px 0 rgba(255,255,255,0.14) inset;
  transition: all 0.25s cubic-bezier(0.23,1,0.32,1);
  position: relative; overflow: hidden;
}
.cta-btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10) inset,
    0 8px 40px rgba(110,40,220,0.60),
    0 1px 0 rgba(255,255,255,0.18) inset;
  border-color: rgba(180,120,255,0.65);
}
.cta-btn-primary svg { transition: transform 0.2s; }
.cta-btn-primary:hover svg { transform: translateX(3px); }

/* Secondary button */
.cta-btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.02em;
  color: rgba(255,255,255,0.68);
  text-decoration: none; cursor: pointer;
  transition: all 0.25s;
}
.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.90);
  transform: translateY(-1px);
}

/* Small trust line below buttons */
.cta-trust {
  margin-top: 32px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; justify-content: center;
}
.cta-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(255,255,255,0.28);
  letter-spacing: 0.01em;
}
.cta-trust-item svg { flex-shrink: 0; opacity: 0.5; }

@media (max-width: 640px) {
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; justify-content: center; }
}

/* â”€â”€ Footer â”€â”€ */
.site-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(14,8,28,0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

/* Subtle top glow */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(152,85,255,0.5), transparent);
  pointer-events: none;
}

/* â”€â”€ Main footer grid â”€â”€ */
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0 60px;
}

/* Brand column */
.footer-brand {
  padding-right: 20px;
}

.footer-logo-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.footer-logo-image {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: radial-gradient(circle at 40% 40%, #9b5fff, #3d1a8a 70%, #1a0a40);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(140,69,255,0.45), inset 0 0 6px rgba(255,255,255,0.12);
  flex-shrink: 0; position: relative; overflow: hidden;
}
.footer-logo-mark::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.25) 0%, transparent 60%);
}
.footer-logo-mark svg { position: relative; z-index: 1; }
.footer-logo-name {
  font-weight: 700; font-size: 17px; letter-spacing: -0.03em; color: #fff;
}

.footer-tagline {
  font-size: 14px; line-height: 23px;
  color: rgba(255,255,255,0.62);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 280px;
}

/* Social icons */
.footer-socials {
  display: flex; gap: 10px; margin-bottom: 32px;
}
.footer-social {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
}
.footer-social:hover {
  background: rgba(152,85,255,0.15);
  border-color: rgba(152,85,255,0.35);
  transform: translateY(-2px);
}
.footer-social svg { opacity: 0.55; transition: opacity 0.2s; }
.footer-social:hover svg { opacity: 0.9; }

/* Contact snippet */
.footer-contact-mini {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-contact-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.005em;
}
.footer-contact-item:hover { color: rgba(255,255,255,0.72); }
.footer-contact-item svg { flex-shrink: 0; opacity: 0.45; }
.footer-contact-item:hover svg { opacity: 0.8; }

/* Link columns */
.footer-col {}

.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.62);
  text-decoration: none; letter-spacing: -0.01em;
  transition: color 0.18s;
  display: inline-flex; align-items: center; gap: 0;
}
.footer-links a:hover { color: rgba(255,255,255,0.88); }

/* â”€â”€ Footer bottom bar â”€â”€ */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12.5px; color: rgba(255,255,255,0.40);
  letter-spacing: -0.005em;
}
.footer-copy span { color: rgba(152,85,255,0.7); }

.footer-bottom-links {
  display: flex; gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px; color: rgba(255,255,255,0.24);
  text-decoration: none; letter-spacing: -0.005em;
  transition: color 0.18s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.56); }

/* â”€â”€ Location badge â”€â”€ */
.footer-location {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: rgba(255,255,255,0.28);
  letter-spacing: -0.005em;
}
.footer-location-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #40e080;
  box-shadow: 0 0 6px rgba(64,224,128,0.7);
  animation: locPulse 2.8s ease-in-out infinite;
}
@keyframes locPulse {
  0%,100% { box-shadow: 0 0 4px rgba(64,224,128,0.5); }
  50% { box-shadow: 0 0 10px rgba(64,224,128,0.9), 0 0 18px rgba(64,224,128,0.3); }
}

@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
    padding: 60px 32px 48px;
  }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  nav {
    width: min(100%, calc(100vw - 48px));
    gap: 24px;
    padding: 13px 16px;
  }

  .dashboard-wrap,
  .clients-strip,
  .bento-row {
    width: min(100%, calc(100vw - 48px));
  }

  .stats-row {
    width: min(100%, calc(100vw - 48px));
  }

  .wcu-rail,
  .wcu-stats,
  .ts-panels,
  .prod-header,
  .prod-stage,
  .prod-bottom-strip,
  .cta-inner,
  .footer-main,
  .footer-bottom,
  .ind-track {
    width: min(100%, 1200px);
  }
}

@media (max-width: 1024px) {
  nav {
    height: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 14px;
  }

  .logo-img-wrap {
    padding-left: 0;
    margin-right: 0;
  }

  .nav-pill {
    flex: 1 1 100%;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    padding: 10px 14px;
    border-radius: 22px;
  }

  .cta-wrap {
    margin-left: auto;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .headline-wrap,
  .subhead {
    width: min(100%, calc(100vw - 48px));
  }

  .headline {
    font-size: clamp(42px, 8vw, 54px);
    line-height: 1.08;
  }

  .trust-strip {
    width: min(100%, calc(100vw - 48px));
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .trust-divider {
    display: none;
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat-cell:nth-child(3n) {
    border-right: none;
  }

  .dashboard-wrap {
    width: min(100%, calc(100vw - 48px));
  }

  .dash-inner {
    grid-template-columns: 190px 1fr;
  }

  .dash-right {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bento-row {
    width: min(100%, calc(100vw - 48px));
    height: auto;
    flex-direction: column;
  }

  .bento-card,
  .bento-wide {
    flex: 1 1 auto;
    width: 100%;
    min-height: 320px;
  }

  .wide-desc {
    max-width: 100%;
  }

  .cs-section,
  .tech-stack,
  .cta-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .sol-overview {
    padding-left: 32px;
    padding-right: 32px;
  }

  .ind-track,
  .ts-panels,
  .prod-header,
  .prod-stage,
  .prod-bottom-strip {
    padding-left: 32px;
    padding-right: 32px;
  }

  .wcu-card.active {
    width: min(420px, 100%);
  }

  .prod-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prod-header {
    gap: 24px;
  }

  .prod-strip-inner {
    flex-wrap: wrap;
  }

  .prod-strip-right {
    flex-wrap: wrap;
  }

  .footer-main {
    gap: 40px 32px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .footer-bottom {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 820px) {
  body {
    overflow-x: hidden;
  }

  .nav-outer {
    padding: 10px 16px 0;
  }

  nav {
    width: 100%;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .logo-img-wrap {
    width: auto;
    justify-content: flex-start;
  }

  .logo-img-wrap img {
    height: 34px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
    margin-left: auto;
  }

  .nav-pill {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    height: auto;
    padding: 18px 16px;
    margin-top: 14px;
    border-radius: 24px;
    background: rgba(9, 5, 24, 0.94);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 18px 50px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.03);
  }

  .nav-item {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
  }

  .nav-item span {
    font-size: 14px;
    line-height: 1.2;
    color: rgba(255,255,255,0.82);
  }

  .nav-item:hover {
    background: rgba(255,255,255,0.04);
  }

  .nav-divider {
    display: none;
  }

  .has-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .dropdown {
    display: none;
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 10px;
    padding: 8px;
    opacity: 1;
    pointer-events: all;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(18,10,38,0.92);
  }

  .has-dropdown:hover .dropdown {
    transform: none;
  }

  .has-dropdown.mobile-open .dropdown {
    display: block;
  }

  .has-dropdown.mobile-open .caret-icon {
    transform: rotate(180deg);
    opacity: 0.9;
  }

  .dropdown a {
    padding: 12px 14px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.64);
    border-radius: 12px;
  }

  .cta-wrap {
    width: 100%;
    max-width: none;
    margin-left: 0;
    display: none;
    margin-top: 14px;
    padding: 0;
    height: auto;
    border: none;
  }

  .nav-outer.nav-open nav {
    align-items: stretch;
  }

  .nav-outer.nav-open .nav-pill,
  .nav-outer.nav-open .cta-wrap {
    display: flex;
  }

  .hero {
    padding-top: 40px;
  }

  .badge {
    width: min(100%, calc(100vw - 32px));
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    border-radius: 22px;
  }

  .headline-wrap,
  .subhead,
  .trust-strip,
  .stats-row,
  .dashboard-wrap,
  .clients-strip {
    width: min(100%, calc(100vw - 32px));
  }

  .cta-row {
    width: min(100%, calc(100vw - 32px));
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-cell {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stat-cell:nth-child(2n) {
    border-right: none;
  }

  .stat-cell:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .dash-inner {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .dash-main {
    padding: 18px;
  }

  .dash-right {
    grid-template-columns: 1fr;
  }

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

  .solutions,
  .sol-overview,
  .cs-section,
  .tech-stack,
  .cta-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sol-heading-wrap,
  .sol-ov-header,
  .cs-header,
  .ind-header,
  .ts-header {
    margin-bottom: 36px;
  }

  .sol-heading,
  .cs-title,
  .ind-title,
  .ts-title,
  .prod-title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.12;
  }

  .bento-row {
    width: min(100%, calc(100vw - 32px));
  }

  .card-visual {
    height: 50%;
  }

  .sol-ov-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cs-section {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .cs-row {
    padding-bottom: 40px;
  }

  .cs-content,
  .cs-stat-panel {
    width: 100%;
  }

  .cs-problem {
    max-width: 100%;
  }

  .industries {
    padding: 68px 0 76px;
  }

  .ind-track {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tech-stack {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .ts-tabs {
    width: min(100%, calc(100vw - 32px));
    margin-bottom: 36px;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .ts-tabs::-webkit-scrollbar {
    display: none;
  }

  .ts-panels {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px;
  }

  .wcu-section {
    padding-top: 68px;
    padding-bottom: 76px;
  }

  .wcu-sub {
    margin-bottom: 32px;
    padding: 0 24px;
  }

  .wcu-rail {
    padding: 0 24px;
  }

  .wcu-card.active {
    height: auto;
    min-height: 420px;
  }

  .wcu-card-content {
    padding: 28px 24px 24px;
  }

  .wcu-stats {
    margin-top: 40px;
    padding: 32px 24px 0;
    gap: 20px;
  }

  .products-section {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .prod-header,
  .prod-stage,
  .prod-bottom-strip {
    padding-left: 24px;
    padding-right: 24px;
  }

  .prod-stage {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .prod-panel {
    padding: 28px 22px 24px;
  }

  .prod-strip-inner {
    padding: 24px;
  }

  .prod-vert-label {
    display: none;
  }

  .cta-section {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .cta-inner {
    padding: 0 24px;
  }

  .cta-sub {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 36px;
  }

  .site-footer::before,
  .prod-deco-lines {
    opacity: 0.03;
  }

  .footer-main,
  .footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 560px) {
  nav {
    width: min(100%, calc(100vw - 24px));
    row-gap: 0;
  }

  .nav-outer {
    padding: 8px 12px 0;
  }

  .nav-pill {
    padding: 14px;
    border-radius: 20px;
  }

  .nav-item {
    min-height: 46px;
    padding: 12px 14px;
  }

  .caret-icon {
    display: block;
  }

  .has-dropdown:hover .dropdown {
    transform: translateX(-50%) translateY(-2px);
  }

  .dropdown {
    left: auto;
    right: auto;
    max-width: none;
  }

  .badge-text {
    font-size: 11px;
  }

  .headline {
    font-size: clamp(34px, 10vw, 42px);
  }

  .subhead {
    font-size: 14px;
    line-height: 24px;
  }

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

  .stat-cell {
    border-right: none;
  }

  .stat-cell:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }

  .dashboard-wrap,
  .clients-strip,
  .headline-wrap,
  .subhead,
  .trust-strip,
  .stats-row,
  .bento-row {
    width: min(100%, calc(100vw - 24px));
  }

  .dashboard-glow {
    width: min(100%, 520px);
  }

  .orb-a {
    width: 520px;
    height: 520px;
  }

  .orb-b {
    width: 320px;
    height: 320px;
  }

  .rings {
    width: 620px;
    height: 620px;
  }

  .products-section::before {
    width: 760px;
    height: 380px;
  }

  .products-section::after {
    width: 540px;
    height: 260px;
  }

  .cta-section::before {
    width: 620px;
    height: 420px;
  }

  .dash-main,
  .dash-right,
  .sidebar-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sidebar-item {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mock-chrome,
  .mock-terminal {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .mock-body,
  .mock-term-body {
    padding: 12px;
  }

  .mock-row {
    flex-direction: column;
  }

  .sol-overview,
  .cs-section,
  .tech-stack,
  .cta-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ind-track,
  .ts-panels,
  .prod-header,
  .prod-stage,
  .prod-bottom-strip,
  .cta-inner,
  .footer-main,
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ts-grid {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .ts-tab {
    padding: 9px 14px;
    font-size: 12px;
  }

  .wcu-rail,
  .wcu-stats {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wcu-card.active {
    min-height: 460px;
  }

  .prod-header {
    margin-bottom: 36px;
  }

  .prod-panel {
    padding: 24px 18px 20px;
    border-radius: 20px;
  }

  .prod-features,
  .prod-metrics {
    padding: 14px;
  }

  .prod-metrics {
    flex-direction: row;
    gap: 8px;
    padding: 8px;
  }

  .prod-metric {
    min-width: 0;
    padding: 10px 8px;
  }

  .prod-metric-val {
    font-size: 16px;
  }

  .prod-metric-label {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .prod-strip-inner {
    padding: 20px 18px;
  }

  .prod-strip-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .prod-strip-right {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }

  .prod-strip-stat {
    flex: 1;
    padding: 0 8px;
  }

  .cta-eyebrow {
    margin-bottom: 22px;
  }

  .cta-headline {
    font-size: clamp(32px, 10vw, 46px);
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 28px;
    padding-bottom: 18px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    width: 100%;
    padding-right: 0;
    padding-bottom: 10px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-logo-row {
    margin-bottom: 10px;
  }

  .footer-logo-image {
    height: 32px;
  }

  .footer-tagline {
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
    font-size: 9.5px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .footer-socials {
    gap: 8px;
    margin-bottom: 12px;
  }

  .footer-social {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .footer-contact-mini {
    gap: 8px;
    padding: 10px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer-contact-item {
    font-size: 11.5px;
    line-height: 1.4;
  }

  .footer-col {
    padding: 10px 4px 8px 0;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-col-title {
    margin-bottom: 8px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-links a {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .footer-bottom {
    padding-top: 14px;
    padding-bottom: 18px;
    gap: 8px;
  }

  .footer-copy {
    font-size: 11px;
  }

  .footer-location {
    font-size: 10.5px;
  }

  .footer-bottom-links a {
    font-size: 11px;
  }

  .footer-bottom {
    padding-top: 18px;
    padding-bottom: 24px;
    gap: 10px;
  }

  .footer-copy,
  .footer-location,
  .footer-bottom-links {
    width: 100%;
  }

  .footer-location {
    justify-content: flex-start;
  }

  .footer-bottom-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

/* Supporting text readability pass */
.nav-item span,
.badge-text,
.trust-item,
.stat-label,
.sidebar-sub,
.sidebar-section-label,
.sidebar-item,
.dash-subtitle,
.dash-date-chip,
.kpi-label,
.pipeline-name,
.pipeline-pct,
.panel-label,
.insight-title,
.insight-meta,
.clients-label,
.client-name,
.card-desc,
.wide-desc,
.sol-ov-card-desc,
.cs-domain-tag,
.cs-problem,
.cs-result-label,
.cs-result-detail,
.cs-metric-pill,
.ind-name,
.ind-desc,
.ts-tab,
.ts-label-eyebrow,
.ts-label-desc,
.ts-label-count,
.ts-tile-name,
.ts-tile-tag,
.wcu-label,
.wcu-exp-desc,
.wcu-exp-points li,
.wcu-exp-cta,
.wcu-stat-label,
.prod-eyebrow-text,
.prod-desc-text,
.prod-feature,
.prod-metric-label,
.prod-tech-pill,
.prod-strip-text,
.prod-strip-stat-label,
.cta-eyebrow-text,
.cta-trust-item,
.footer-tagline,
.footer-contact-item,
.footer-col-title,
.footer-links a,
.footer-copy,
.footer-bottom-links a,
.footer-location {
  color: rgba(255,255,255,0.78);
}

.sidebar-section-label,
.panel-label,
.clients-label,
.ts-label-eyebrow,
.prod-strip-stat-label,
.footer-col-title,
.footer-copy,
.footer-bottom-links a,
.footer-location {
  color: rgba(255,255,255,0.58);
}

.ts-tab.active,
.nav-item:hover span,
.footer-links a:hover,
.footer-contact-item:hover,
.footer-bottom-links a:hover {
  color: #fff;
}
