/* NuvisoAI Theme — css/main.css v2.0 */
:root {
  --indigo:       #4f46e5;
  --indigo-dark:  #3730a3;
  --indigo-light: #6366f1;
  --indigo-pale:  #eef2ff;
  --indigo-bd:    #c7d2fe;
  --red:          #c41a1a;
  --ink:          #0f172a;
  --ink-2:        #1e293b;
  --ink-3:        #334155;
  --muted:        #64748b;
  --subtle:       #94a3b8;
  --rule:         #e2e8f0;
  --bg:           #ffffff;
  --bg-2:         #f8fafc;
  --bg-3:         #f1f5f9;
  --strip-bg:     #1e293b;
  --green:        #16a34a;
  --blue:         #1d4ed8;
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.1);
  --shadow-xl:    0 32px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; line-height: 1.6; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--ink); }
a { color: var(--indigo); text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.accent { color: var(--indigo); }

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 68px; background: rgba(255,255,255,0.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--rule); display: flex; align-items: center; animation: navIn .5s .6s ease both; }
@keyframes navIn { from{opacity:0;transform:translateY(-100%)} to{opacity:1;transform:translateY(0)} }
.nav-inner { width: 100%; max-width: 1380px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { height: 40px; width: auto; }
.nav-wordmark { display: flex; align-items: center; }
.nav-text { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
.nav-sep { width: 1.5px; height: 18px; background: #d1d5db; margin: 0 7px; }
.nav-ai { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: #c41a1a; letter-spacing: -0.04em; line-height: 1; }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--muted); padding: 7px 13px; border-radius: 8px; transition: all .15s; display: block; }
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--ink); background: var(--bg-2); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-roi-btn { font-size: 14px; font-weight: 600; color: var(--indigo); padding: 7px 13px; border-radius: 8px; text-decoration: none; border: 1.5px solid var(--indigo-bd); transition: all .15s; white-space: nowrap; }
.nav-roi-btn:hover { background: var(--indigo-pale); }
.nav-btn { background: var(--indigo); color: #fff; padding: 9px 18px; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .15s; white-space: nowrap; box-shadow: 0 2px 8px rgba(79,70,229,.3); }
.nav-btn:hover { background: var(--indigo-dark); transform: translateY(-1px); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero { min-height: 100vh; padding-top: 68px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; position: relative; overflow: hidden; background: var(--bg); }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px); background-size: 28px 28px; opacity: .5; pointer-events: none; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 65% at 28% 50%, rgba(255,255,255,.97) 25%, rgba(255,255,255,.6) 65%, transparent 100%); pointer-events: none; }
.hero-left { padding: 80px 0; position: relative; z-index: 2; }
.container-left { max-width: none; padding-left: max(40px, calc((100vw - 1180px)/2 + 40px)); padding-right: 60px; }
.container-right { padding-right: max(40px, calc((100vw - 1180px)/2 + 40px)); padding-left: 40px; }
.hero-right { display: flex; align-items: center; justify-content: flex-end; position: relative; z-index: 2; opacity: 0; animation: slideIn .8s .4s ease forwards; padding-top: 80px; padding-bottom: 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--indigo-pale); border: 1px solid var(--indigo-bd); color: #3730a3; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px; margin-bottom: 28px; opacity: 0; animation: up .6s .2s ease forwards; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--indigo); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { font-size: clamp(44px, 5vw, 72px); margin-bottom: 24px; opacity: 0; animation: up .6s .35s ease forwards; }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 460px; margin-bottom: 40px; opacity: 0; animation: up .6s .5s ease forwards; }
.hero-sub strong { color: var(--ink-3); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; opacity: 0; animation: up .6s .65s ease forwards; }
.hero-proof { display: flex; align-items: center; gap: 24px; opacity: 0; animation: up .6s .8s ease forwards; }
.proof-divider { width: 1px; height: 32px; background: var(--rule); }
.proof-num { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--indigo); line-height: 1; margin-bottom: 2px; }
.proof-lbl { font-size: 11px; color: var(--subtle); }
@keyframes up { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideIn { from{opacity:0;transform:translateX(32px)} to{opacity:1;transform:translateX(0)} }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--indigo); color: #fff; padding: 13px 26px; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; text-decoration: none; box-shadow: 0 4px 16px rgba(79,70,229,.35); transition: all .2s; position: relative; overflow: hidden; border: none; cursor: pointer; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent); transition: left .4s; }
.btn-primary:hover::before { left: 140%; }
.btn-primary:hover { background: var(--indigo-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,.4); color: #fff; }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-3); background: var(--bg); padding: 13px 24px; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600; text-decoration: none; border: 1.5px solid var(--rule); transition: all .2s; }
.btn-secondary:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--indigo); padding: 14px 32px; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 800; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,.2); transition: all .2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); padding: 14px 28px; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600; text-decoration: none; border: 1.5px solid rgba(255,255,255,.15); transition: all .2s; }
.btn-outline-white:hover { color: #fff; border-color: rgba(255,255,255,.4); }

/* ── DASHBOARD ── */
.dash-card { width: 100%; max-width: 480px; background: var(--bg); border: 1px solid var(--rule); border-radius: 16px; box-shadow: var(--shadow-xl); overflow: hidden; animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.dash-top { background: var(--ink); padding: 14px 18px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.06); }
.dash-dots { display: flex; gap: 5px; }
.dash-dot { width: 9px; height: 9px; border-radius: 50%; }
.d-r{background:#ff5f57} .d-y{background:#febc2e} .d-g{background:#28c840}
.dash-title { font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: 1.5px; text-transform: uppercase; margin-left: 8px; font-family: 'Outfit', sans-serif; }
.live-pill { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 10px; color: #4ade80; font-weight: 600; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: livePulse 1.5s ease-in-out infinite; }
@keyframes livePulse { 0%,100%{box-shadow:0 0 0 0 rgba(74,222,128,.5)} 50%{box-shadow:0 0 0 5px rgba(74,222,128,0)} }
.dash-body { padding: 18px; background: var(--bg-2); }
.deploy-row { display: flex; gap: 8px; margin-bottom: 12px; }
.deploy-badge { flex: 1; padding: 7px 10px; border-radius: 8px; font-size: 10px; font-weight: 600; display: flex; align-items: center; gap: 6px; border: 1px solid var(--rule); background: var(--bg); }
.deploy-badge.cloud { border-color: var(--indigo-bd); background: var(--indigo-pale); color: #3730a3; }
.deploy-badge.edge  { border-color: #bbf7d0; background: #f0fdf4; color: #14532d; }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.kpi-card { background: var(--bg); border: 1px solid var(--rule); border-radius: 10px; padding: 14px 12px; }
.kpi-label { font-size: 9px; color: var(--subtle); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.kpi-value { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1; }
.kpi-value.green{color:var(--green)} .kpi-value.indigo{color:var(--indigo)}
.kpi-delta { font-size: 10px; color: var(--green); margin-top: 3px; }
.dash-chart { background: var(--bg); border: 1px solid var(--rule); border-radius: 10px; padding: 14px; margin-bottom: 12px; }
.chart-label { font-size: 10px; color: var(--subtle); margin-bottom: 10px; }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 52px; }
.bar { flex: 1; border-radius: 3px 3px 0 0; background: var(--bg-3); transition: height .5s ease; }
.bar.hi{background:var(--indigo)} .bar.mid{background:#a5b4fc}
.dash-alerts { display: flex; flex-direction: column; gap: 8px; }
.alert { display: flex; align-items: center; gap: 9px; padding: 10px 13px; border-radius: 8px; font-size: 11px; font-weight: 500; }
.alert.warn { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert.good { background: #f0fdf4; border: 1px solid #bbf7d0; color: #14532d; }
.alert-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.alert.warn .alert-dot{background:#f59e0b} .alert.good .alert-dot{background:#22c55e}

/* ── STRIP ── */
.strip { background: var(--strip-bg); padding: 0 40px; }
.strip-inner { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.strip-item { text-align: center; padding: 36px 20px; border-right: 1px solid rgba(255,255,255,.08); }
.strip-item:last-child { border-right: none; }
.strip-num { font-family: 'Outfit', sans-serif; font-size: 44px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; letter-spacing: -.03em; }
.strip-num .a { color: #94a3b8; }
.strip-lbl { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--indigo); margin-bottom: 14px; }
.section-tag::before { content: ''; width: 20px; height: 2px; background: var(--indigo); border-radius: 2px; }
.section-title { font-size: clamp(32px,3.5vw,48px); font-weight: 900; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 520px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── ROI ── */
.roi { background: var(--bg-2); }
.roi-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 56px; }
.roi-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.roi-card { background: var(--bg); border: 1px solid var(--rule); border-top: 3px solid var(--indigo); border-radius: 12px; padding: 32px 26px; transition: all .25s; }
.roi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.roi-big { font-family: 'Outfit', sans-serif; font-size: 60px; font-weight: 900; color: var(--indigo); line-height: 1; margin-bottom: 8px; letter-spacing: -.03em; }
.roi-title { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.roi-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── DEPLOYMENT ── */
.deploy-section { background: var(--bg); }
.deploy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.deploy-card { border: 1.5px solid var(--rule); border-radius: 16px; padding: 36px 32px; transition: all .25s; position: relative; overflow: hidden; }
.deploy-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.deploy-card.cloud::before { background: var(--indigo); }
.deploy-card.edge::before  { background: #059669; }
.deploy-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.deploy-icon-wrap { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.deploy-card.cloud .deploy-icon-wrap { background: var(--indigo-pale); }
.deploy-card.edge  .deploy-icon-wrap { background: #ecfdf5; }
.deploy-name { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.deploy-subtitle { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.deploy-card.cloud .deploy-subtitle { color: var(--indigo); }
.deploy-card.edge  .deploy-subtitle { color: #059669; }
.deploy-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.deploy-points { display: flex; flex-direction: column; gap: 8px; }
.deploy-point { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-3); line-height: 1.5; }
.dp-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.deploy-card.cloud .dp-dot { background: var(--indigo); }
.deploy-card.edge  .dp-dot { background: #059669; }
.deploy-tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; margin-top: 20px; }
.deploy-card.cloud .deploy-tag { background: var(--indigo-pale); color: #3730a3; border: 1px solid var(--indigo-bd); }
.deploy-card.edge  .deploy-tag { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }

/* ── QUOTE ── */
.quote-section { background: var(--bg); padding: 72px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.quote-inner { max-width: 800px; margin: 0 auto; text-align: center; padding: 0 40px; }
.quote-mark { font-family: 'Outfit', sans-serif; font-size: 80px; font-weight: 900; color: var(--indigo); opacity: .2; line-height: .5; margin-bottom: 20px; }
.quote-text { font-family: 'Outfit', sans-serif; font-size: clamp(20px,2.5vw,30px); font-weight: 700; line-height: 1.3; color: var(--ink); margin-bottom: 24px; }
.quote-attr { font-size: 13px; color: var(--subtle); }

/* ── PRODUCTS ── */
.products { background: var(--bg-2); }
.products-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 48px; }
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.prod-card { background: var(--bg); border: 1px solid var(--rule); border-radius: 12px; padding: 32px; position: relative; overflow: hidden; transition: all .25s; }
.prod-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--indigo); transform: scaleX(0); transition: transform .3s; }
.prod-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.prod-card:hover::after { transform: scaleX(1); }
.prod-icon { font-size: 26px; margin-bottom: 16px; display: block; }
.prod-vertical { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--indigo); margin-bottom: 6px; }
.prod-name { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.prod-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 20px; }
.ptag { font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 100px; background: var(--indigo-pale); color: #3730a3; border: 1px solid var(--indigo-bd); text-transform: uppercase; letter-spacing: .04em; }
.prod-link { font-size: 13px; font-weight: 700; color: var(--indigo); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.prod-link:hover { gap: 10px; }

/* ── HOW ── */
.how { background: var(--bg); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 52px; }
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--rule); transition: all .2s; }
.step:last-child { border-bottom: none; }
.step:hover .step-num { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.step-num { width: 34px; height: 34px; border: 1.5px solid var(--indigo-bd); border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 800; color: var(--indigo); transition: all .2s; }
.step-title { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.step-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding: 2px 8px; border-radius: 100px; margin-top: 6px; }
.step-tag.cloud { background: var(--indigo-pale); color: #3730a3; }
.step-tag.edge  { background: #ecfdf5; color: #065f46; }
.how-visual { background: var(--ink); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-xl); }
.hv-header { background: rgba(0,0,0,.3); padding: 12px 16px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(255,255,255,.06); }
.hv-body { padding: 16px; }
.cam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; background: rgba(0,0,0,.2); border-radius: 8px; padding: 12px; margin-bottom: 12px; }
.cam { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 6px; height: 56px; display: flex; align-items: center; justify-content: center; font-size: 9px; color: rgba(255,255,255,.2); text-transform: uppercase; letter-spacing: .5px; position: relative; overflow: hidden; }
.cam.live { border-color: rgba(79,70,229,.4); background: rgba(79,70,229,.07); }
.scanline { position: absolute; left: 0; right: 0; height: 1px; background: rgba(99,102,241,.7); animation: scan 2s linear infinite; }
@keyframes scan { from{top:0} to{top:100%} }
.ai-rows { display: flex; flex-direction: column; gap: 6px; }
.ai-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05); border-radius: 6px; font-size: 11px; }
.ai-k { color: rgba(255,255,255,.35); }
.ai-v { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 12px; color: #fff; }
.ai-v.g{color:#4ade80} .ai-v.r{color:#f87171} .ai-v.i{color:#a5b4fc}

/* ── COMPLIANCE ── */
.compliance { background: var(--bg-2); }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.comp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.comp-card { background: var(--bg); border: 1px solid var(--rule); border-radius: 12px; padding: 22px 20px; transition: all .2s; }
.comp-card:hover { background: var(--indigo-pale); border-color: var(--indigo-bd); }
.comp-flag { font-size: 24px; margin-bottom: 10px; }
.comp-title { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.comp-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, var(--ink) 0%, #1e293b 50%, #0f172a 100%); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 28px 28px; }
.cta-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(79,70,229,.15) 0%, transparent 70%); }
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: 0 40px; }
.cta-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(165,180,252,.9); margin-bottom: 20px; }
.cta-tag::before { content: ''; width: 16px; height: 2px; background: rgba(165,180,252,.8); border-radius: 2px; }
.cta-title { font-family: 'Outfit', sans-serif; font-size: clamp(36px,5vw,62px); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 18px; letter-spacing: -.03em; }
.cta-title .accent { color: #a5b4fc; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 40px; font-style: italic; }
.cta-feats { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 40px; }
.cta-feat { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.55); }
.cta-feat::before { content: ''; width: 4px; height: 4px; background: var(--indigo-light); border-radius: 50%; flex-shrink: 0; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); padding: 60px 0 36px; }
.footer-inner { max-width: 1380px; margin: 0 auto; padding: 0 40px; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 32px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
.footer-brand-text { display: flex; align-items: center; }
.fbw { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.fbs { width: 1.5px; height: 16px; background: #2d3148; margin: 0 6px; }
.fbai { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; color: #f87171; letter-spacing: -.03em; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.28); line-height: 1.7; margin-bottom: 14px; }
.footer-email { font-size: 13px; color: rgba(99,102,241,.7); text-decoration: none; display: block; margin-bottom: 6px; transition: color .2s; }
.footer-email:hover { color: #a5b4fc; }
.f-col-title { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 0; padding: 0; }
.f-links a { font-size: 13px; color: rgba(255,255,255,.28); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: rgba(255,255,255,.75); }
.f-link-highlight { color: rgba(165,180,252,.6) !important; }
.f-link-highlight:hover { color: #a5b4fc !important; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.f-copy { font-size: 12px; color: rgba(255,255,255,.18); }
.f-legal { display: flex; gap: 20px; }
.f-legal a { font-size: 12px; color: rgba(255,255,255,.18); text-decoration: none; transition: color .2s; }
.f-legal a:hover { color: rgba(255,255,255,.5); }

/* ── GENERIC PAGE ── */
.page-content { padding: 120px 0 80px; }
.page-title { font-size: clamp(32px,4vw,56px); margin-bottom: 32px; }
.page-body { font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 800px; }
.page-body h2 { font-size: 28px; font-weight: 700; color: var(--ink); margin: 40px 0 16px; }
.page-body p { margin-bottom: 16px; }
.page-body a { color: var(--indigo); }

/* ── ROI CALCULATOR PAGE ── */
.roi-calc-page { padding-top: 68px; }
.roi-calc-hero { background: var(--ink); padding: 56px 40px; text-align: center; position: relative; overflow: hidden; }
.roi-calc-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(79,70,229,.15) 0%, transparent 70%); }
.roi-calc-hero h1 { position: relative; z-index: 2; font-family: 'Outfit', sans-serif; font-size: clamp(28px,4vw,48px); font-weight: 900; color: #fff; letter-spacing: -.03em; margin-bottom: 10px; }
.roi-calc-hero p { position: relative; z-index: 2; font-size: 16px; color: rgba(255,255,255,.45); font-style: italic; max-width: 560px; margin: 0 auto; }
.roi-calc-wrap { max-width: 1100px; margin: 0 auto; padding: 40px 24px 60px; }
.calc-card { background: var(--bg); border: 1px solid var(--rule); border-radius: 14px; padding: 28px; margin-bottom: 20px; }
.calc-card-title { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.calc-card-title::before { content: ''; width: 16px; height: 2px; background: var(--indigo); border-radius: 2px; }
.calc-inputs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field label { font-size: 13px; font-weight: 500; color: var(--ink-3); }
.calc-field select { height: 40px; padding: 0 36px 0 12px; border: 1px solid var(--rule); border-radius: 8px; background: var(--bg); color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 14px; cursor: pointer; transition: border-color .2s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.calc-field select:focus { outline: none; border-color: var(--indigo); }
.slider-row { display: flex; align-items: center; gap: 14px; }
.slider-row input[type=range] { flex: 1; height: 4px; cursor: pointer; accent-color: var(--indigo); }
.slider-val { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); min-width: 72px; text-align: right; }
.calc-results-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 20px; }
.calc-result { background: var(--bg-2); border: 1px solid var(--rule); border-radius: 10px; padding: 18px; transition: border-color .2s; }
.calc-result:hover { border-color: var(--indigo); }
.calc-result-label { font-size: 11px; font-weight: 600; color: var(--subtle); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; }
.calc-result-val { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 900; line-height: 1; margin-bottom: 4px; letter-spacing: -.02em; }
.calc-result-val.green{color:var(--green)} .calc-result-val.blue{color:var(--blue)} .calc-result-val.red{color:var(--red)} .calc-result-val.ink{color:var(--ink)}
.calc-result-sub { font-size: 12px; color: var(--subtle); line-height: 1.4; }
.calc-summary-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 20px; }
.calc-summary-item { background: var(--bg-2); border-radius: 10px; padding: 16px; text-align: center; }
.calc-summary-num { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 900; line-height: 1; margin-bottom: 4px; letter-spacing: -.02em; color: var(--ink); }
.calc-summary-num.green{color:var(--green)} .calc-summary-num.blue{color:var(--blue)} .calc-summary-num.red{color:var(--red)}
.calc-summary-lbl { font-size: 11px; color: var(--subtle); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; }
.calc-bars { margin-bottom: 20px; }
.calc-bar-row { margin-bottom: 12px; }
.calc-bar-header { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 5px; font-weight: 500; }
.calc-bar-track { height: 8px; background: var(--bg-3); border-radius: 4px; overflow: hidden; }
.calc-bar-fill { height: 8px; border-radius: 4px; transition: width .5s cubic-bezier(.4,0,.2,1); }
.calc-bar-fill.green{background:var(--green)} .calc-bar-fill.blue{background:var(--blue)} .calc-bar-fill.red{background:var(--red)}
.calc-deploy-note { border-left: 3px solid var(--rule); padding: 12px 16px; background: var(--bg-2); border-radius: 0 8px 8px 0; font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.calc-deploy-note.cloud { border-left-color: var(--blue); }
.calc-deploy-note.edge  { border-left-color: var(--green); }
.calc-deploy-note strong { color: var(--ink-3); }
.calc-disclaimer { font-size: 12px; color: var(--subtle); text-align: center; line-height: 1.55; }
.calc-cta-bar { background: var(--ink); border-radius: 12px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.calc-cta-bar h3 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: 4px; }
.calc-cta-bar p { font-size: 14px; color: rgba(255,255,255,.4); }
.calc-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ── CONTACT PAGE ── */
.contact-page { padding-top: 68px; }
.contact-hero { background: var(--ink); padding: 56px 40px; text-align: center; position: relative; overflow: hidden; }
.contact-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(79,70,229,.15) 0%, transparent 70%); }
.contact-hero h1 { position: relative; z-index: 2; font-family: 'Outfit', sans-serif; font-size: clamp(28px,4vw,48px); font-weight: 900; color: #fff; letter-spacing: -.03em; margin-bottom: 10px; }
.contact-hero p { position: relative; z-index: 2; font-size: 16px; color: rgba(255,255,255,.45); font-style: italic; max-width: 520px; margin: 0 auto; }
.contact-wrap { max-width: 1100px; margin: 0 auto; padding: 40px 24px 60px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.contact-form-card { background: var(--bg); border: 1px solid var(--rule); border-radius: 14px; padding: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-bottom: 24px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1/-1; }
.form-field label { font-size: 13px; font-weight: 500; color: var(--ink-3); }
.req { color: var(--red); }
.form-field input, .form-field select, .form-field textarea { padding: 10px 14px; border: 1px solid var(--rule); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--ink); background: var(--bg); transition: border-color .2s; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.form-footer { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: var(--subtle); }
.form-submit { border: none; cursor: pointer; font-size: 15px; }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-message { margin-top: 14px; padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; }
.form-message.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #14532d; }
.form-message.error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--bg); border: 1px solid var(--rule); border-radius: 12px; padding: 22px 20px; }
.contact-info-title { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.contact-info-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--indigo); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.contact-info-item:hover { color: var(--indigo-dark); }
.ci-icon { font-size: 16px; }
.contact-steps { display: flex; flex-direction: column; gap: 10px; }
.contact-step { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.cs-num { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 800; color: var(--indigo); flex-shrink: 0; width: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .roi-head, .products-head { grid-template-columns: 1fr; gap: 24px; }
  .roi-cards { grid-template-columns: 1fr; }
  .deploy-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .strip-inner { grid-template-columns: repeat(2,1fr); }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .strip-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero-left { padding: 48px 0; }
  .container-left { padding-left: 20px; padding-right: 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(255,255,255,.98); backdrop-filter: blur(20px); padding: 16px 20px; gap: 4px; border-bottom: 1px solid var(--rule); z-index: 199; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-roi-btn { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .comp-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-inner { padding: 0 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-feats { flex-direction: column; align-items: center; gap: 12px; }
  .calc-inputs-grid, .calc-results-grid { grid-template-columns: 1fr; }
  .calc-summary-grid { grid-template-columns: repeat(2,1fr); }
  .calc-cta-bar { flex-direction: column; text-align: center; }
  .strip { padding: 0 20px; }
  .strip-inner { grid-template-columns: 1fr 1fr; }
  .nav-inner { padding: 0 20px; }
  .quote-inner { padding: 0 20px; }
  .roi-calc-hero, .contact-hero { padding: 40px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   LOGO UPDATE — PNG-based nav & footer logo
   ═══════════════════════════════════════════════════════════ */
.nav-logo-img {
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}
.footer-logo-img {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    /* On dark footer background, use the transparent logo —
       it has grey "nuviso" + blue "AI" which reads well on dark */
}

/* ═══════════════════════════════════════════════════════════
   POWERED BY BIELABS SECTION
   ═══════════════════════════════════════════════════════════ */
.bielabs-section {
    background: #f8f9fb;
    border-top: 1px solid #e8ecf4;
    border-bottom: 1px solid #e8ecf4;
}

.bielabs-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 860px) {
    .bielabs-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
}

/* Left — badge block */
.bielabs-badge-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 32px;
    background: #0d1f3c;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}
.bielabs-badge-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(0,119,204,0.18) 0%, transparent 65%);
    pointer-events: none;
}
@media (max-width: 860px) {
    .bielabs-badge-wrap { align-items: center; }
}

.bielabs-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.bielabs-logo-wrap {
    font-family: 'Trebuchet MS', Trebuchet, Arial, sans-serif;
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}
.bielabs-bie  { color: #ffffff; }
.bielabs-labs { color: #0099ee; }

.bielabs-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* Right — content */
.bielabs-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
@media (max-width: 680px) {
    .bielabs-pillars { grid-template-columns: repeat(2, 1fr); }
}

.bielabs-pillar {
    background: white;
    border: 1px solid #e8ecf4;
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
}
.bielabs-pillar-icon {
    font-size: 22px;
    margin-bottom: 8px;
}
.bielabs-pillar-name {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0d1f3c;
    margin-bottom: 4px;
}
.bielabs-pillar-desc {
    font-size: 11px;
    color: #8a95a8;
    line-height: 1.4;
}

.bielabs-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0077cc;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(0,119,204,0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}
.bielabs-link:hover {
    color: #0d1f3c;
    border-color: #0d1f3c;
}

/* ═══════════════════════════════════════════════════════════
   SMART ANPR PRODUCT CARD — no extra CSS needed,
   uses existing .prod-card styles. The 5th card
   gets an accent via nth-child if desired.
   ═══════════════════════════════════════════════════════════ */
.prod-card:nth-child(5) .prod-vertical {
    color: #0077cc; /* ANPR gets a cyan vertical label */
}

/* ═══════════════════════════════════════════════════════════
   HERO HEADLINE ANIMATION SYSTEM
   ═══════════════════════════════════════════════════════════ */

/* ── Word entrance — each word slides up + fades in ── */
.hero-headline {
    line-height: 1.08;
}

.hl-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
                transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.hl-word.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── "Missing" — accent word with scan-line sweep ── */
.hl-missing {
    position: relative;
    display: inline-block;
    color: var(--accent, #4f46e5);
}

/* Scan line: a vertical bright bar sweeps left→right over "Missing" */
.hl-scan {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    border-radius: 2px;
}
.hl-scan::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 60%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(79,70,229,0.18) 40%,
        rgba(255,255,255,0.45) 50%,
        rgba(79,70,229,0.18) 60%,
        transparent 100%
    );
    animation: scanSweep 2.2s cubic-bezier(0.4,0,0.2,1) 1.1s both;
}
@keyframes scanSweep {
    0%   { left: -80%; opacity: 0; }
    8%   { opacity: 1; }
    100% { left: 120%; opacity: 0; }
}

/* ── "Millions." — counter pulse on entry ── */
.hl-millions {
    position: relative;
}
.hl-millions.visible {
    animation: millionsPop 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.05s both;
}
@keyframes millionsPop {
    0%   { transform: translateY(0) scale(0.92); }
    60%  { transform: translateY(0) scale(1.04); }
    100% { transform: translateY(0) scale(1); }
}

/* ── Badge pulse dot ── */
.hero-badge-dot {
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.6; }
}

/* ── Sub-text fade up (delayed after headline) ── */
.hero-sub-anim {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease 0.85s, transform 0.6s ease 0.85s;
}
.hero-sub-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── CTA buttons slide up after sub-text ── */
.hero-actions-anim {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease 1.05s, transform 0.55s ease 1.05s;
}
.hero-actions-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Proof stats count up + fade in ── */
.hero-proof-anim {
    opacity: 0;
    transition: opacity 0.5s ease 1.25s;
}
.hero-proof-anim.visible {
    opacity: 1;
}
.proof-item .proof-num {
    transition: color 0.3s ease;
}

/* ── Proof numbers count-up animation ── */
@keyframes countUp {
    from { opacity: 0.3; }
    to   { opacity: 1; }
}

/* ── Hero right dashboard — slide in from right ── */
.hero-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1) 0.4s,
                transform 0.75s cubic-bezier(0.22,1,0.36,1) 0.4s;
}
.hero-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── Reduced motion — respect user preference ── */
@media (prefers-reduced-motion: reduce) {
    .hl-word,
    .hero-sub-anim,
    .hero-actions-anim,
    .hero-proof-anim,
    .hero-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    .hl-scan::after { animation: none !important; }
    .hero-badge-dot { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .4; pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%,
    rgba(255,255,255,.97) 20%, rgba(255,255,255,.6) 60%, transparent 100%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 680px;
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  margin-bottom: 22px;
}
.page-hero-sub {
  font-size: 18px; color: var(--muted);
  line-height: 1.75; max-width: 560px;
}

/* ── Mission ── */
.about-mission { background: var(--bg); }
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
@media (max-width: 900px) {
  .about-mission-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  background: var(--bg-2);
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.about-stat-card:hover {
  border-color: var(--indigo-bd);
  box-shadow: 0 4px 20px rgba(79,70,229,.08);
}
.about-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 38px; font-weight: 900;
  line-height: 1; margin-bottom: 6px;
  letter-spacing: -.03em;
}
.about-stat-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.about-stat-desc {
  font-size: 12px; color: var(--subtle);
  line-height: 1.55;
}

/* ── Story ── */
.about-story { background: var(--bg-2); }
.about-story-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px; align-items: start;
}
@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 48px; }
}

.about-story-text p {
  font-size: 16px; color: var(--muted);
  line-height: 1.8; margin-bottom: 18px;
}
.about-story-text .section-title { margin-bottom: 28px; }

/* Timeline */
.about-story-timeline {
  display: flex; flex-direction: column; gap: 0;
  padding-top: 16px;
}
.timeline-item {
  display: flex; gap: 20px;
  padding-bottom: 36px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 9px; top: 20px;
  width: 2px;
  bottom: 0;
  background: linear-gradient(to bottom, var(--indigo-bd), transparent);
}
.timeline-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--indigo);
  border: 3px solid var(--indigo-pale);
  flex-shrink: 0; margin-top: 2px;
  box-shadow: 0 0 0 3px rgba(79,70,229,.15);
}
.timeline-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--indigo); margin-bottom: 4px;
}
.timeline-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--ink); margin-bottom: 8px;
}
.timeline-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.65;
}

/* ── Beliefs ── */
.about-beliefs-head {
  max-width: 560px; margin-bottom: 52px;
}
.about-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .about-beliefs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .about-beliefs-grid { grid-template-columns: 1fr; }
}

.belief-card {
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all .25s;
}
.belief-card:hover {
  border-color: var(--indigo-bd);
  box-shadow: 0 8px 32px rgba(79,70,229,.08);
  transform: translateY(-3px);
}
.belief-icon {
  font-size: 28px; margin-bottom: 14px;
}
.belief-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--ink); margin-bottom: 10px;
}
.belief-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.7;
}

/* ── Powered by BIELabs ── */
.about-bie { background: var(--bg); }
.about-bie-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px; align-items: center;
}
@media (max-width: 860px) {
  .about-bie-inner { grid-template-columns: 1fr; gap: 40px; }
}

.about-bie-left {
  display: flex; justify-content: center;
}
.about-bie-badge {
  background: #0d1f3c;
  border-radius: 20px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 10px;
  width: 100%;
  position: relative; overflow: hidden;
}
.about-bie-badge::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(0,119,204,.2) 0%, transparent 65%);
  pointer-events: none;
}
.bie-pw-label {
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-weight: 600;
}
.bie-logo-text {
  font-family: 'Trebuchet MS', Trebuchet, Arial, sans-serif;
  font-size: 52px; font-weight: 900; line-height: 1;
}
.bie-n { color: #fff; }
.bie-l { color: #0099ee; }
.bie-tagline {
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.bie-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-bottom: 24px;
}
@media (max-width: 680px) {
  .bie-tech-grid { grid-template-columns: repeat(2, 1fr); }
}
.bie-tech-item {
  background: var(--bg-2); border: 1.5px solid var(--rule);
  border-radius: 12px; padding: 16px 14px;
  text-align: center;
}
.bie-tech-val {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 900;
  line-height: 1; margin-bottom: 6px;
  letter-spacing: -.02em;
}
.bie-tech-lbl {
  font-size: 11px; color: var(--subtle);
  line-height: 1.4;
}

/* ── Markets ── */
.about-markets-head {
  max-width: 580px; margin-bottom: 48px;
}
.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) {
  .markets-grid { grid-template-columns: 1fr; }
}
.market-card {
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all .25s;
}
.market-card:hover {
  border-color: var(--indigo-bd);
  box-shadow: 0 8px 32px rgba(79,70,229,.07);
  transform: translateY(-3px);
}
.market-flag {
  font-size: 40px; margin-bottom: 16px;
  line-height: 1;
}
.market-name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--ink); margin-bottom: 12px;
}
.market-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; margin-bottom: 20px;
}
.market-products { display: flex; flex-wrap: wrap; gap: 6px; }
.mptag {
  font-size: 11px; font-weight: 600;
  padding: 4px 11px; border-radius: 100px;
  background: var(--indigo-pale);
  color: #3730a3;
  border: 1px solid var(--indigo-bd);
  letter-spacing: .03em;
}

/* ── Responsive fixes ── */
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }
  .about-mission-stats { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGES
   ═══════════════════════════════════════════════════════════ */

/* ── Product Hero ── */
.prod-page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  padding-top: 68px;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.prod-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .3; pointer-events: none;
  z-index: 0;
}
.prod-page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 20% 50%,
    rgba(255,255,255,.98) 30%, rgba(255,255,255,.6) 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.prod-hero-left {
  padding: 80px 48px 80px 48px;
  position: relative; z-index: 2;
  animation: up .6s .1s ease both;
  max-width: 620px;
}
.prod-hero-right {
  padding: 80px 48px 80px 32px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  animation: slideIn .7s .2s ease both;
}

.prod-bie-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #0d1f3c; color: #0099ee;
  font-family: 'Trebuchet MS', Trebuchet, Arial, sans-serif;
  font-size: 11px; font-weight: 900;
  padding: 4px 12px; border-radius: 4px;
  letter-spacing: .1em; margin-bottom: 14px;
}

.prod-eyebrow {
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--indigo); margin-bottom: 10px;
}

.prod-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900; color: var(--ink);
  letter-spacing: -.03em; line-height: 1;
  margin-bottom: 16px;
}

.prod-hero-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600; color: var(--ink-3);
  line-height: 1.35; margin-bottom: 18px;
}

.prod-hero-rule {
  width: 48px; height: 4px;
  background: var(--indigo); border-radius: 2px;
  margin-bottom: 20px;
}

.prod-hero-body {
  font-size: 16px; color: var(--muted);
  line-height: 1.75; max-width: 480px;
  margin-bottom: 32px;
}

/* Feature icons row */
.prod-feat-icons {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.pfi {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px; padding: 14px 16px;
  min-width: 76px;
  transition: border-color .2s, box-shadow .2s;
  position: relative; z-index: 3;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.pfi:hover { border-color: var(--indigo-bd); box-shadow: 0 4px 12px rgba(79,70,229,0.1); }
.pfi-icon { font-size: 24px; line-height: 1; display: block; }
.pfi-lbl {
  font-size: 10px; font-weight: 600; color: #3d4a5e;
  text-align: center; line-height: 1.3; display: block;
}

.prod-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Product Dashboard Card ── */
.prod-dashboard-card {
  width: 100%; max-width: 420px;
  background: var(--bg); border: 1px solid var(--rule);
  border-radius: 16px; box-shadow: var(--shadow-xl);
  overflow: hidden; animation: float 5s ease-in-out infinite;
}
.pd-header {
  background: var(--ink); padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
}
.pd-dots { display: flex; gap: 5px; }
.pd-dots span { width: 9px; height: 9px; border-radius: 50%; display: block; }
.pd-title {
  font-size: 10px; color: rgba(255,255,255,.3);
  letter-spacing: 1.5px; text-transform: uppercase;
  font-family: 'Outfit', sans-serif; margin-left: 8px;
}
.pd-body { padding: 16px; background: var(--bg-2); }
.pd-alert {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 12px; font-weight: 500; margin-bottom: 8px;
  line-height: 1.4;
}
.pd-alert.warn { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.pd-alert.good { background: #f0fdf4; border: 1px solid #bbf7d0; color: #14532d; }
.pd-metrics {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; margin: 12px 0;
}
.pd-metric {
  background: var(--bg); border: 1px solid var(--rule);
  border-radius: 10px; padding: 12px 10px; text-align: center;
}
.pd-mval {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 900;
  line-height: 1.1; margin-bottom: 4px;
}
.pd-mlbl { font-size: 10px; color: var(--subtle); line-height: 1.3; }
.pd-plate-row {
  background: var(--ink); border-radius: 10px;
  padding: 12px 14px; margin-top: 8px;
  display: flex; align-items: center; gap: 12px;
}
.pd-plate {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 900;
  color: white; letter-spacing: .05em;
  background: rgba(255,255,255,.1); padding: 6px 12px;
  border-radius: 6px; border: 1px solid rgba(255,255,255,.15);
  white-space: nowrap;
}
.pd-plate-meta { font-size: 11px; color: rgba(255,255,255,.45); line-height: 1.5; }
.pd-plate-tag {
  display: inline-block; padding: 2px 7px;
  border-radius: 4px; font-size: 10px; font-weight: 700;
  margin-right: 4px;
}
.pd-plate-tag.green { background: rgba(74,222,128,.2); color: #4ade80; }
.pd-plate-tag.warn  { background: rgba(251,191,36,.2); color: #fbbf24; }

/* ── Benefit Strip ── */
.prod-strip {
  background: var(--slate);
  padding: 0 max(40px, calc((100vw - 1380px)/2 + 40px));
  border-top: 1px solid rgba(255,255,255,.06);
}
.prod-strip-inner {
  display: grid; grid-template-columns: repeat(5,1fr);
  max-width: 1380px; margin: 0 auto;
}
.ps-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ps-item:last-child { border-right: none; }
.ps-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.ps-item strong { display: block; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.ps-item p { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.45; margin: 0; }

/* ── Modules grid ── */
.prod-modules { background: var(--bg); }
.prod-modules-head { max-width: 600px; margin-bottom: 48px; }
.prod-modules-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.prod-mod-card {
  background: var(--bg-2); border: 1.5px solid var(--rule);
  border-radius: 14px; padding: 28px 24px;
  transition: all .25s; position: relative; overflow: hidden;
}
.prod-mod-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--indigo); transform: scaleX(0);
  transition: transform .3s; transform-origin: left;
}
.prod-mod-card:hover { border-color: var(--indigo-bd); box-shadow: 0 8px 32px rgba(79,70,229,.08); transform: translateY(-3px); }
.prod-mod-card:hover::before { transform: scaleX(1); }
.prod-mod-icon { font-size: 28px; margin-bottom: 14px; }
.prod-mod-name { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.prod-mod-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.prod-mod-tag {
  font-size: 11px; font-weight: 600; color: var(--indigo);
  padding: 4px 10px; border-radius: 100px;
  background: var(--indigo-pale); border: 1px solid var(--indigo-bd);
  display: inline-block;
}

/* ── ROI section ── */
.prod-roi-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.prod-roi-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.prod-roi-stat {
  background: var(--bg); border: 1.5px solid var(--rule);
  border-radius: 14px; padding: 24px 20px;
  transition: border-color .2s;
}
.prod-roi-stat:hover { border-color: var(--indigo-bd); }
.prod-roi-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 900;
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -.03em;
}
.prod-roi-lbl { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* ── Use Cases ── */
.prod-usecase-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.usecase-card {
  background: var(--bg); border: 1.5px solid var(--rule);
  border-radius: 14px; padding: 28px 24px;
  transition: all .25s;
}
.usecase-card:hover { border-color: var(--indigo-bd); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(79,70,229,.07); }
.usecase-icon { font-size: 32px; margin-bottom: 14px; }
.usecase-name { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.usecase-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── Tagline bar ── */
.prod-tagline-bar {
  background: var(--ink);
  text-align: center;
  padding: 20px 40px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 800; color: rgba(255,255,255,.85);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════════
   DEPLOYMENT PAGE
   ═══════════════════════════════════════════════════════════ */
.deploy-compare-table {
  background: var(--bg); border: 1.5px solid var(--rule);
  border-radius: 16px; overflow: hidden;
}
.dct-header {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--ink); padding: 16px 24px;
}
.dct-header .dct-feature { color: rgba(255,255,255,.3); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.dct-header .dct-col { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800; color: white; }
.dct-header .dct-col.cloud { color: #a5b4fc; }
.dct-header .dct-col.edge  { color: #6ee7b7; }
.dct-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 24px; border-top: 1px solid var(--rule);
  align-items: center;
}
.dct-row.alt { background: var(--bg-2); }
.dct-feature { font-size: 13px; font-weight: 600; color: var(--ink-3); }
.dct-col { font-size: 13px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   INVESTORS PAGE
   ═══════════════════════════════════════════════════════════ */
.inv-hero { background: var(--slate); }
.inv-hero .page-hero-inner { max-width: 720px; }
.inv-hero h1 { color: #fff; }
.inv-hero .page-hero-sub { color: rgba(255,255,255,.5); }

.inv-opp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.inv-opp-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.inv-stat {
  background: var(--bg-2); border: 1.5px solid var(--rule);
  border-radius: 14px; padding: 24px 20px;
}
.inv-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 900;
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -.03em;
}
.inv-stat-lbl { font-size: 13px; color: var(--muted); line-height: 1.45; }

.inv-forces-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.inv-force {
  padding: 32px 28px;
  background: var(--bg); border: 1.5px solid var(--rule);
  border-radius: 16px; transition: all .25s;
}
.inv-force:hover { border-color: var(--indigo-bd); box-shadow: 0 8px 32px rgba(79,70,229,.07); }
.inv-force-num {
  font-family: 'Outfit', sans-serif;
  font-size: 48px; font-weight: 900;
  color: var(--indigo-bd); line-height: 1;
  margin-bottom: 16px; letter-spacing: -.03em;
}
.inv-force-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.inv-force-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

.inv-moat-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.inv-moat-card {
  background: var(--bg-2); border: 1.5px solid var(--rule);
  border-radius: 16px; padding: 32px 28px;
  transition: all .25s;
}
.inv-moat-card:hover { border-color: var(--indigo-bd); box-shadow: 0 8px 32px rgba(79,70,229,.07); }
.inv-moat-icon { font-size: 32px; margin-bottom: 16px; }
.inv-moat-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.inv-moat-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

.inv-model-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.inv-model-card {
  background: var(--bg-2); border: 1.5px solid var(--rule);
  border-radius: 16px; padding: 32px 28px;
}
.inv-model-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--indigo); margin-bottom: 8px;
}
.inv-model-title { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.inv-model-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

.inv-traction-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.inv-traction {
  text-align: center;
  background: var(--bg-2); border: 1.5px solid var(--rule);
  border-radius: 16px; padding: 32px 24px;
}
.inv-traction-num {
  font-family: 'Outfit', sans-serif;
  font-size: 52px; font-weight: 900;
  line-height: 1; margin-bottom: 10px;
  letter-spacing: -.03em;
}
.inv-traction-lbl { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.inv-traction-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .prod-page-hero { grid-template-columns: 1fr; min-height: auto; }
  .prod-hero-right { display: none; }
  .prod-strip-inner { grid-template-columns: repeat(2,1fr); }
  .ps-item:nth-child(2n) { border-right: none; }
  .prod-modules-grid { grid-template-columns: repeat(2,1fr); }
  .prod-roi-grid { grid-template-columns: 1fr; gap: 40px; }
  .prod-roi-stats { grid-template-columns: repeat(2,1fr); }
  .prod-usecase-grid { grid-template-columns: repeat(2,1fr); }
  .inv-opp-grid { grid-template-columns: 1fr; gap: 48px; }
  .inv-forces-grid { grid-template-columns: 1fr; }
  .inv-moat-grid { grid-template-columns: 1fr; }
  .inv-model-grid { grid-template-columns: 1fr; }
  .inv-traction-grid { grid-template-columns: repeat(2,1fr); }
  .dct-row, .dct-header { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 640px) {
  .prod-modules-grid { grid-template-columns: 1fr; }
  .prod-usecase-grid { grid-template-columns: 1fr; }
  .prod-strip-inner { grid-template-columns: 1fr; }
  .ps-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .inv-opp-stats { grid-template-columns: 1fr; }
  .inv-traction-grid { grid-template-columns: 1fr; }
}

/* ── Blinking dot on "Millions." ── */
.hl-dot {
  display: inline-block;
  color: var(--indigo);
  opacity: 0;
  animation: dotBlink 1.1s ease-in-out 1.4s infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   BOOK A DEMO PAGE
   ═══════════════════════════════════════════════════════════ */
.demo-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.card { background:var(--bg); border:1px solid var(--rule); border-radius:14px; padding:28px; }
.demo-form .df-field { display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.demo-form .df-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.demo-form label { font-size:12px; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; }
.demo-form input, .demo-form select, .demo-form textarea {
  height:42px; padding:0 14px; border:1.5px solid var(--rule); border-radius:10px;
  font-family:var(--font-body,inherit); font-size:14px; color:var(--ink); background:var(--bg);
  transition:border-color .2s, box-shadow .2s; width:100%;
}
.demo-form textarea { height:90px; padding:12px 14px; resize:vertical; }
.demo-form input:focus, .demo-form select:focus, .demo-form textarea:focus {
  outline:none; border-color:var(--indigo); box-shadow:0 0 0 3px rgba(79,70,229,.1);
}
.demo-steps { display:flex; flex-direction:column; gap:24px; margin-bottom:32px; }
.demo-step { display:flex; gap:20px; align-items:flex-start; }
.ds-num { font-family:'Outfit',sans-serif; font-size:28px; font-weight:900; color:var(--indigo-bd); line-height:1; flex-shrink:0; width:40px; }
.ds-title { font-family:'Outfit',sans-serif; font-size:16px; font-weight:800; color:var(--ink); margin-bottom:6px; }
.ds-desc { font-size:14px; color:var(--muted); line-height:1.65; }
.demo-trust { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.dt-item { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--ink-3); background:var(--bg-2); border:1.5px solid var(--rule); border-radius:10px; padding:12px 14px; }
.dt-icon { font-size:18px; }

/* ═══════════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════════ */
.pricing-toggle { display:flex; align-items:center; gap:8px; }
.pt-btn { padding:9px 20px; border-radius:8px; border:1.5px solid var(--rule); background:var(--bg); font-family:'Outfit',sans-serif; font-size:14px; font-weight:700; color:var(--muted); cursor:pointer; transition:all .2s; }
.pt-btn.active { background:var(--indigo); border-color:var(--indigo); color:#fff; }
.pt-currency select { height:40px; padding:0 14px; border:1.5px solid var(--rule); border-radius:8px; font-size:14px; background:var(--bg); cursor:pointer; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.pricing-card { background:var(--bg); border:1.5px solid var(--rule); border-radius:16px; padding:32px 28px; position:relative; transition:all .25s; }
.pricing-card.featured { border-color:var(--indigo); box-shadow:0 8px 40px rgba(79,70,229,.15); transform:scale(1.02); }
.pc-popular { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--indigo); color:#fff; font-size:11px; font-weight:700; padding:4px 14px; border-radius:100px; white-space:nowrap; letter-spacing:.06em; }
.pc-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--indigo); margin-bottom:6px; }
.pc-name { font-family:'Outfit',sans-serif; font-size:24px; font-weight:900; color:var(--ink); margin-bottom:16px; }
.pc-price { font-family:'Outfit',sans-serif; padding:20px 0; border-top:1px solid var(--rule); border-bottom:1px solid var(--rule); margin-bottom:20px; }
.pc-sym { font-size:16px; font-weight:700; color:var(--muted); vertical-align:top; margin-top:8px; display:inline-block; }
.pc-amt { font-size:44px; font-weight:900; color:var(--ink); letter-spacing:-.03em; }
.pc-per { font-size:13px; color:var(--subtle); }
.pc-desc { font-size:13px; color:var(--muted); line-height:1.65; margin-bottom:20px; }
.pc-features { list-style:none; display:flex; flex-direction:column; gap:9px; }
.pc-features li { font-size:13px; color:var(--ink-3); line-height:1.4; }
.module-pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.mod-price-card { background:var(--bg-2); border:1.5px solid var(--rule); border-radius:14px; padding:24px 20px; }
.mpc-icon { font-size:28px; margin-bottom:12px; }
.mpc-name { font-family:'Outfit',sans-serif; font-size:16px; font-weight:800; color:var(--ink); margin-bottom:8px; }
.mpc-desc { font-size:13px; color:var(--muted); line-height:1.6; margin-bottom:14px; }
.mpc-price { font-size:12px; font-weight:700; color:var(--indigo); background:var(--indigo-pale); border:1px solid var(--indigo-bd); padding:4px 10px; border-radius:100px; display:inline-block; }
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.faq-card { background:var(--bg); border:1.5px solid var(--rule); border-radius:14px; padding:24px 22px; }
.faq-q { font-family:'Outfit',sans-serif; font-size:16px; font-weight:800; color:var(--ink); margin-bottom:10px; }
.faq-a { font-size:14px; color:var(--muted); line-height:1.7; }

/* ═══════════════════════════════════════════════════════════
   TECHNOLOGY PAGE
   ═══════════════════════════════════════════════════════════ */
.tech-hero .page-hero-inner { max-width:680px; }
.tech-bie-grid { display:grid; grid-template-columns:280px 1fr; gap:72px; align-items:center; }
.tech-bie-badge { background:#0d1f3c; border-radius:20px; padding:40px 32px; display:flex; flex-direction:column; align-items:flex-start; gap:12px; }
.bie-ext-link { color:#0099ee; font-size:13px; font-weight:600; text-decoration:none; border-bottom:1px solid rgba(0,153,238,.3); padding-bottom:2px; margin-top:8px; }
.tech-pillars-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.tech-pillar { background:var(--bg); border:1.5px solid var(--rule); border-radius:16px; padding:28px 24px; transition:all .25s; }
.tech-pillar:hover { border-color:var(--indigo-bd); transform:translateY(-3px); box-shadow:0 8px 32px rgba(79,70,229,.08); }
.tp-icon { font-size:30px; margin-bottom:16px; }
.tp-name { font-family:'Outfit',sans-serif; font-size:17px; font-weight:800; color:var(--ink); margin-bottom:10px; }
.tp-desc { font-size:13px; color:var(--muted); line-height:1.7; margin-bottom:16px; }
.tp-tags { display:flex; flex-wrap:wrap; gap:6px; }
.tp-tags span { font-size:10px; font-weight:600; padding:3px 9px; border-radius:100px; background:var(--indigo-pale); color:#3730a3; border:1px solid var(--indigo-bd); }

/* ═══════════════════════════════════════════════════════════
   CAREERS PAGE
   ═══════════════════════════════════════════════════════════ */
.careers-why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.cw-card { background:var(--bg-2); border:1.5px solid var(--rule); border-radius:14px; padding:28px 24px; transition:all .25s; }
.cw-card:hover { border-color:var(--indigo-bd); transform:translateY(-3px); box-shadow:0 8px 24px rgba(79,70,229,.08); }
.cw-icon { font-size:28px; margin-bottom:14px; }
.cw-title { font-family:'Outfit',sans-serif; font-size:16px; font-weight:800; color:var(--ink); margin-bottom:10px; }
.cw-desc { font-size:13px; color:var(--muted); line-height:1.7; }
.careers-roles-list { display:flex; flex-direction:column; gap:16px; }
.role-card { background:var(--bg); border:1.5px solid var(--rule); border-radius:14px; padding:28px 32px; display:flex; align-items:flex-start; justify-content:space-between; gap:32px; transition:border-color .2s; }
.role-card:hover { border-color:var(--indigo-bd); }
.role-left { flex:1; }
.role-name { font-family:'Outfit',sans-serif; font-size:20px; font-weight:800; color:var(--ink); margin-bottom:6px; }
.role-meta { font-size:12px; font-weight:600; color:var(--indigo); text-transform:uppercase; letter-spacing:.08em; margin-bottom:12px; }
.role-desc { font-size:14px; color:var(--muted); line-height:1.65; }
.role-right { display:flex; flex-direction:column; align-items:flex-end; gap:12px; flex-shrink:0; }
.role-type { font-size:11px; font-weight:700; padding:4px 12px; border-radius:100px; background:var(--indigo-pale); color:#3730a3; border:1px solid var(--indigo-bd); }

/* ═══════════════════════════════════════════════════════════
   CASE STUDIES PAGE
   ═══════════════════════════════════════════════════════════ */
.cs-feat-inner { background:var(--bg-2); border:1.5px solid var(--rule); border-radius:20px; padding:48px; position:relative; overflow:hidden; }
.cs-feat-inner::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--indigo),var(--green)); }
.cs-feat-badge { display:inline-flex; align-items:center; gap:6px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--indigo); background:var(--indigo-pale); border:1px solid var(--indigo-bd); padding:4px 12px; border-radius:100px; margin-bottom:28px; }
.cs-feat-grid { display:grid; grid-template-columns:1fr 380px; gap:56px; align-items:start; }
.cs-vertical-tag { font-size:12px; font-weight:700; color:var(--indigo); text-transform:uppercase; letter-spacing:.1em; margin-bottom:14px; }
.cs-stats-row { display:flex; gap:32px; margin:28px 0; }
.cs-stat-num { font-family:'Outfit',sans-serif; font-size:36px; font-weight:900; line-height:1; margin-bottom:4px; letter-spacing:-.03em; }
.cs-stat-lbl { font-size:12px; color:var(--muted); }
.cs-quote { border-left:3px solid var(--indigo); padding:14px 18px; background:var(--bg); border-radius:0 10px 10px 0; font-size:15px; font-style:italic; color:var(--ink-3); line-height:1.65; }
.cs-quote cite { display:block; font-size:12px; color:var(--subtle); font-style:normal; margin-top:8px; }
.cs-result-card { background:var(--bg); border:1.5px solid var(--rule); border-radius:14px; overflow:hidden; }
.csr-header { background:var(--ink); color:rgba(255,255,255,.8); font-size:12px; font-weight:700; padding:14px 18px; letter-spacing:.08em; text-transform:uppercase; }
.csr-rows { padding:0 18px; }
.csr-row { display:flex; justify-content:space-between; align-items:center; padding:11px 0; border-bottom:1px solid var(--rule); font-size:13px; }
.csr-row:last-child { border-bottom:none; }
.csr-row span { color:var(--muted); }
.csr-row strong { font-weight:700; color:var(--ink); }
.csr-row.green strong { color:var(--green); }
.csr-row.accent-row { background:var(--indigo-pale); margin:0 -18px; padding:11px 18px; }
.csr-row.accent-row strong { color:var(--indigo); font-size:16px; }
.cs-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.cs-card { background:var(--bg); border:1.5px solid var(--rule); border-radius:16px; overflow:hidden; transition:all .25s; }
.cs-card:hover { box-shadow:0 12px 40px rgba(0,0,0,.1); transform:translateY(-4px); }
.cs-card-header { padding:20px 24px; }
.cs-card-header.supermarket { background:linear-gradient(135deg,#064e3b,#065f46); }
.cs-card-header.automotive  { background:linear-gradient(135deg,#1e3a5f,#1d4ed8); }
.cs-card-header.education   { background:linear-gradient(135deg,#4338ca,#6366f1); }
.cs-card-header.anpr        { background:linear-gradient(135deg,#0d1f3c,#0077cc); }
.cs-card-header.retail-india{ background:linear-gradient(135deg,#7c3aed,#a855f7); }
.csc-vertical { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.6); margin-bottom:4px; }
.csc-product { font-family:'Outfit',sans-serif; font-size:18px; font-weight:900; color:#fff; }
.cs-card-body { padding:24px; }
.csc-title { font-family:'Outfit',sans-serif; font-size:17px; font-weight:800; color:var(--ink); line-height:1.3; margin-bottom:12px; }
.csc-summary { font-size:13px; color:var(--muted); line-height:1.7; margin-bottom:18px; }
.csc-stats { display:flex; gap:16px; margin-bottom:16px; }
.csc-stat { display:flex; flex-direction:column; gap:3px; }
.csc-n { font-family:'Outfit',sans-serif; font-size:22px; font-weight:900; line-height:1; letter-spacing:-.02em; }
.csc-n.green { color:var(--green); }
.csc-n.accent { color:var(--indigo); }
.csc-l { font-size:11px; color:var(--subtle); }
.csc-quote { font-size:13px; font-style:italic; color:var(--ink-3); line-height:1.6; border-left:2px solid var(--indigo-bd); padding-left:12px; margin-bottom:14px; }
.csc-quote cite { display:block; font-size:11px; color:var(--subtle); font-style:normal; margin-top:6px; }
.csc-meta { font-size:11px; color:var(--subtle); padding-top:12px; border-top:1px solid var(--rule); }

/* ── Responsive ── */
@media (max-width:960px) {
  .demo-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .pricing-card.featured { transform:none; }
  .module-pricing-grid { grid-template-columns:repeat(2,1fr); }
  .faq-grid { grid-template-columns:1fr; }
  .tech-bie-grid { grid-template-columns:1fr; gap:40px; }
  .tech-pillars-grid { grid-template-columns:repeat(2,1fr); }
  .careers-why-grid { grid-template-columns:repeat(2,1fr); }
  .cs-feat-grid { grid-template-columns:1fr; gap:32px; }
  .cs-grid { grid-template-columns:1fr; }
  .cs-stats-row { flex-wrap:wrap; gap:20px; }
}
@media (max-width:640px) {
  .tech-pillars-grid { grid-template-columns:1fr; }
  .careers-why-grid { grid-template-columns:1fr; }
  .module-pricing-grid { grid-template-columns:1fr; }
  .role-card { flex-direction:column; }
  .role-right { align-items:flex-start; }
  .demo-form .df-row { grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS LISTING PAGE
   ═══════════════════════════════════════════════════════════ */
.prod-listing-card {
  display: grid;
  grid-template-columns: 120px 1fr 220px;
  gap: 0;
  background: var(--bg);
  border: 1.5px solid var(--rule);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.prod-listing-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
  transform: translateY(-3px);
}

/* Colour strip — left column */
.plc-left {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 28px 16px;
  text-align: center;
}
.plc-left.automotive  { background: linear-gradient(160deg,#1e3a5f,#1d4ed8); }
.plc-left.retail      { background: linear-gradient(160deg,#7c3aed,#a855f7); }
.plc-left.education   { background: linear-gradient(160deg,#4338ca,#6366f1); }
.plc-left.supermarket { background: linear-gradient(160deg,#064e3b,#059669); }
.plc-left.anpr        { background: linear-gradient(160deg,#0d1f3c,#0077cc); }

.plc-icon    { font-size: 32px; }
.plc-vertical {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.7);
}
.plc-markets {
  display: flex; flex-direction: column; gap: 4px;
}
.plc-markets span {
  font-size: 11px; color: rgba(255,255,255,.5);
}

/* Body — middle column */
.plc-body {
  padding: 28px 32px;
  border-right: 1px solid var(--rule);
}
.plc-name {
  font-family: 'Outfit', sans-serif;
  font-size: 24px; font-weight: 900;
  color: var(--ink); letter-spacing: -.02em;
  margin-bottom: 4px;
}
.plc-tagline {
  font-size: 14px; color: var(--indigo);
  font-weight: 600; margin-bottom: 12px;
}
.plc-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; margin-bottom: 18px;
}
.plc-modules {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.plc-modules span {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  color: var(--ink-3);
}

/* Right stats column */
.plc-right {
  padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: center;
}
.plc-stats {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 4px;
}
.plc-stat { display: flex; flex-direction: column; gap: 2px; }
.plc-sn {
  font-family: 'Outfit', sans-serif;
  font-size: 26px; font-weight: 900;
  line-height: 1; letter-spacing: -.02em;
}
.plc-sl { font-size: 11px; color: var(--subtle); }

/* Platform section */
.plat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.plat-point {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--ink-3);
}
.plat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--indigo); flex-shrink: 0;
}
.plat-bie {
  background: var(--bg-2); border: 1.5px solid var(--rule);
  border-radius: 20px; padding: 36px 32px;
}
.plat-bie-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 12px; margin-top: 20px;
}
.pbs-item {
  text-align: center; background: var(--bg);
  border: 1px solid var(--rule); border-radius: 10px;
  padding: 14px 10px;
}
.pbs-n {
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 900;
  line-height: 1; margin-bottom: 4px;
}
.pbs-l { font-size: 11px; color: var(--subtle); }

/* Responsive */
@media (max-width: 900px) {
  .prod-listing-card {
    grid-template-columns: 1fr;
  }
  .plc-left {
    flex-direction: row; justify-content: flex-start;
    padding: 16px 20px; border-radius: 0;
  }
  .plc-body { border-right: none; border-bottom: 1px solid var(--rule); }
  .plc-stats { flex-direction: row; gap: 20px; }
  .plat-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms, Compliance)
   ═══════════════════════════════════════════════════════════ */
.legal-wrap {
  max-width: 760px; margin: 0 auto;
}
.legal-intro {
  font-size: 16px; color: var(--muted); line-height: 1.85;
  padding: 24px 28px; background: var(--indigo-pale);
  border-left: 4px solid var(--indigo); border-radius: 0 12px 12px 0;
  margin-bottom: 40px;
}
.legal-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--ink); margin-bottom: 14px;
}
.legal-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--ink-3); margin: 18px 0 8px;
}
.legal-section p {
  font-size: 15px; color: var(--muted);
  line-height: 1.8; margin-bottom: 12px;
}
.legal-section ul {
  margin: 10px 0 14px 20px;
}
.legal-section ul li {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; margin-bottom: 6px;
}
.legal-section a {
  color: var(--indigo); text-decoration: none;
  border-bottom: 1px solid var(--indigo-bd);
}
.legal-section a:hover { border-color: var(--indigo); }

/* ── Compliance page specific ── */
.comp-fw-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comp-fw-card {
  background: var(--bg-2); border: 1.5px solid var(--rule);
  border-radius: 16px; padding: 32px 28px;
  transition: all .25s;
}
.comp-fw-card:hover {
  border-color: var(--indigo-bd);
  box-shadow: 0 8px 32px rgba(79,70,229,.07);
}
.comp-fw-flag { font-size: 40px; margin-bottom: 14px; }
.comp-fw-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--ink); margin-bottom: 4px;
}
.comp-fw-short {
  font-size: 13px; font-weight: 700;
  color: var(--indigo); margin-bottom: 4px;
}
.comp-fw-ref {
  font-size: 11px; color: var(--subtle);
  margin-bottom: 16px;
}
.comp-fw-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.75; margin-bottom: 20px;
}
.comp-fw-points { display: flex; flex-direction: column; gap: 8px; }
.cfp {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-3);
}
.cfp-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--indigo); flex-shrink: 0;
}

.comp-design-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.comp-design-card {
  background: var(--bg-2); border: 1.5px solid var(--rule);
  border-radius: 14px; padding: 28px 24px;
  transition: all .25s;
}
.comp-design-card:hover {
  border-color: var(--indigo-bd);
  transform: translateY(-3px);
}
.cdc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 900;
  color: var(--indigo-bd); line-height: 1;
  margin-bottom: 14px;
}
.cdc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--ink); margin-bottom: 10px;
}
.cdc-desc {
  font-size: 13px; color: var(--muted); line-height: 1.7;
}

@media (max-width: 860px) {
  .comp-fw-grid { grid-template-columns: 1fr; }
  .comp-design-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 580px) {
  .comp-design-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS PAGES (ICON BACKGROUND STRIP)
   ═══════════════════════════════════════════════════════════ */

.prod-strip {
  background-color: #1e293b; /* dark slate */
  padding: 40px 20px;
}

.prod-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #ffffff;
  max-width: 200px;
}

.ps-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.ps-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.ps-item p {
  font-size: 0.82rem;
  color: #94a3b8; /* soft grey for supporting text */
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   INVESTOR HERO — Remove light overlays, improve readability
   ═══════════════════════════════════════════════════════════ */

/* Kill the white radial overlay that washes out text */
.inv-hero.page-hero::after {
  background: radial-gradient(
    ellipse 60% 70% at 20% 50%,
    rgba(30, 41, 59, 0.55) 0%,
    transparent 100%
  );
}

/* Dim the dot grid — too bright on dark bg */
.inv-hero.page-hero::before {
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  opacity: 0.3;
}

/* Ensure full text readability */
.inv-hero .page-hero-inner h1 {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.inv-hero .page-hero-inner .page-hero-sub {
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.inv-hero .page-hero-inner .section-tag {
  color: #a5b4fc;
}
.inv-hero .page-hero-inner .section-tag::before {
  background: #a5b4fc;
}

/* ═══════════════════════════════════════════════════════════
    About, deployment and products pages top section — Remove light overlays, improve readability
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--slate); /* #1e293b */
}
.page-hero h1,
.page-hero .section-title {
  color: #ffffff;
}
.page-hero .page-hero-sub,
.page-hero p {
  color: rgba(255,255,255,0.65);
}
.page-hero .section-tag {
  color: #a5b4fc;
}
.page-hero .section-tag::before {
  background: #a5b4fc;
}
.page-hero::before {
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  opacity: 0.4;
}
.page-hero::after {
  background: radial-gradient(ellipse 60% 80% at 20% 50%,
    rgba(79,70,229,0.15) 0%, transparent 70%);
}


/* ═══════════════════════════════════════════════════════════
   PRODUCTS & INNER PAGE HEROES — Text visibility fix
   ═══════════════════════════════════════════════════════════ */

/* Fix heading colour — currently too light on pale indigo bg */
.page-hero h1,
.page-hero .section-title {
  color: var(--ink) !important;        /* #0f172a — near black */
}

/* Fix subtext — currently washing out */
.page-hero .page-hero-sub {
  color: var(--ink-3) !important;      /* #334155 — dark grey */
}

/* Fix section tag */
.page-hero .section-tag {
  color: var(--indigo) !important;
}

/* Reduce the white radial overlay opacity so it doesn't bleach text */
.page-hero::after {
  background: radial-gradient(
    ellipse 65% 65% at 28% 50%,
    rgba(255,255,255,0.75) 15%,
    rgba(255,255,255,0.3) 55%,
    transparent 100%
  );
}

/* Exception: investor hero keeps white text on dark slate */
.inv-hero.page-hero h1 {
  color: #ffffff !important;
}
.inv-hero.page-hero .page-hero-sub {
  color: rgba(255,255,255,0.75) !important;
}
.inv-hero.page-hero .section-tag {
  color: #a5b4fc !important;
}