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

/* ══════════════════════════════════════════════════
   AGENTIC BUSINESS SUITE — PROFESSIONAL B2B THEME
   Manrope headlines · Inter body
   Dark hero / Light pages / Accent blue #1A56FF
══════════════════════════════════════════════════ */

:root {
  /* Brand */
  --blue:     #1A56FF;
  --blue-d:   #1240CC;
  --blue-l:   #EEF3FF;
  --blue-mid: #2563EB;

  /* Neutrals */
  --ink:      #0A0F1E;
  --ink2:     #111827;
  --ink3:     #1F2937;
  --ink4:     #374151;
  --mid:      #6B7280;
  --border:   #E5E7EB;
  --border2:  #D1D5DB;
  --surface:  #F9FAFB;
  --white:    #FFFFFF;

  /* Accents */
  --green:    #10B981;
  --amber:    #F59E0B;
  --red:      #EF4444;
  --violet:   #7C3AED;

  /* Hero (dark) */
  --hero-bg:  #0A0F1E;
  --hero-2:   #0F1729;

  /* Type */
  --t-hero:   #FFFFFF;
  --t-hero2:  rgba(255,255,255,0.65);
  --t-dark:   #111827;
  --t-body:   #374151;
  --t-muted:  #6B7280;
  --t-faint:  #9CA3AF;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.16);

  --r:  6px;
  --r2: 10px;
  --r3: 16px;
  --r4: 24px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box }
html { scroll-behavior: smooth; font-size: 16px }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--t-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none }
img { max-width: 100%; display: block }
button { font-family: inherit }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 68px; display: flex; align-items: center;
  padding: 0 48px; gap: 40px;
  background: rgba(10,15,30,0.94);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0 }
.nav-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--blue); display: grid; place-items: center;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 13px;
  color: #fff; letter-spacing: -0.5px; flex-shrink: 0;
}
.nav-wordmark { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; color: #fff; letter-spacing: -0.3px }
.nav-sub { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.4); margin-top: 1px; letter-spacing: 0.5px }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; flex: 1 }
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6);
  padding: 6px 14px; border-radius: var(--r); transition: all 0.15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07) }
.nav-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0 }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r2);
  font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; border: none; transition: all 0.18s; white-space: nowrap;
  letter-spacing: -0.1px;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 0 0 0 rgba(26,86,255,0);
}
.btn-primary:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,255,0.4) }
.btn-secondary {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25) }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-l) }
.btn-ghost {
  background: transparent; color: var(--t-body);
  border: 1.5px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue) }
.btn-white {
  background: #fff; color: var(--ink2);
}
.btn-white:hover { background: var(--surface); box-shadow: var(--shadow-md) }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--r3) }
.btn-sm { padding: 7px 16px; font-size: 13px; border-radius: var(--r) }
.btn-xs { padding: 5px 12px; font-size: 12px; border-radius: 5px }

/* ── LAYOUT ──────────────────────────────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px }
.section { padding: 96px 48px; max-width: 1280px; margin: 0 auto }

/* ── TYPE SYSTEM ─────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.label-dark { color: rgba(255,255,255,0.5) }

.h-display {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900; line-height: 1.0; letter-spacing: -2.5px;
  color: var(--t-hero);
}
.h-xl {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800; line-height: 1.08; letter-spacing: -1.8px;
  color: var(--t-dark);
}
.h-lg {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; line-height: 1.12; letter-spacing: -1.2px;
  color: var(--t-dark);
}
.h-md {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.8px;
  color: var(--t-dark);
}
.blue { color: var(--blue) }
.lead { font-size: 18px; line-height: 1.7; color: var(--t-muted); max-width: 560px }
.lead-dark { color: var(--t-hero2) }

/* ── HERO ────────────────────────────────────── */
.hero {
  background: var(--hero-bg);
  padding: 140px 48px 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 30%, rgba(26,86,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(124,58,237,0.07) 0%, transparent 60%);
  pointer-events: none;
}
/* Subtle grid lines */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2 }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,86,255,0.15); border: 1px solid rgba(26,86,255,0.3);
  border-radius: 100px; padding: 6px 14px; margin-bottom: 28px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #10B981;
  box-shadow: 0 0 8px #10B981; animation: ldot 2s ease-in-out infinite;
}
@keyframes ldot { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap }
.hero-trust { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5) }
.trust-item svg { color: var(--green); flex-shrink: 0 }

/* Dashboard visual */
.dash-wrap { position: relative }
.dash-card {
  background: #fff; border-radius: var(--r4);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.dash-topbar {
  height: 44px; background: #F8FAFF; border-bottom: 1px solid #E8EEFF;
  display: flex; align-items: center; padding: 0 16px; gap: 8px;
}
.wdot { width: 10px; height: 10px; border-radius: 50% }
.dash-title-bar { font-size: 12px; font-weight: 600; color: var(--t-dark); margin-left: 8px }
.dash-live-badge {
  margin-left: auto; background: #ECFDF5; border: 1px solid #6EE7B7;
  border-radius: 100px; padding: 2px 10px; font-size: 11px; font-weight: 600; color: #059669;
}
.dash-body { padding: 20px }
.dash-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 16px }
.kpi {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 14px;
}
.kpi-val { font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 800; color: var(--t-dark); letter-spacing: -0.8px }
.kpi-lbl { font-size: 11px; color: var(--t-muted); margin-top: 2px; font-weight: 500 }
.kpi-trend { font-size: 10px; font-weight: 600; color: var(--green); margin-top: 4px }
.dash-row { display: grid; grid-template-columns: 3fr 2fr; gap: 10px; margin-bottom: 10px }
.chart-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 14px;
}
.chart-label { font-size: 11px; font-weight: 600; color: var(--t-muted); margin-bottom: 10px }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 56px }
.bar { flex: 1; border-radius: 3px 3px 0 0; background: #DBEAFE; transition: 0.3s }
.bar.active { background: var(--blue) }
.activity-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 14px;
}
.act-item { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 11px; color: var(--t-body) }
.act-item:last-child { border-bottom: none }
.act-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0 }
.act-time { margin-left: auto; color: var(--t-faint); font-size: 10px }
.dash-agents { display: flex; gap: 8px }
.agent-chip {
  flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 10px; display: flex; align-items: center; gap: 8px;
}
.agent-status { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0 }
.agent-name { font-size: 11px; font-weight: 600; color: var(--t-dark) }
.agent-desc { font-size: 10px; color: var(--t-muted); margin-top: 1px }

/* Float cards */
.float-card {
  position: absolute; background: #fff; border-radius: var(--r2);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: 12px 16px; z-index: 5; white-space: nowrap;
  animation: fc-float 4s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: -2s }
@keyframes fc-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.fc-icon { font-size: 18px; margin-bottom: 4px }
.fc-title { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; color: var(--t-dark) }
.fc-sub { font-size: 11px; color: var(--t-muted); margin-top: 1px }
.fc-val { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; color: var(--green); letter-spacing: -0.5px }

/* ── TICKER ──────────────────────────────────── */
.ticker-wrap {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 14px 0; position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent) }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--surface), transparent) }
.ticker-track { display: flex; animation: tick 50s linear infinite }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.tick-item { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; padding: 0 32px; font-size: 13px; font-weight: 500; color: var(--t-muted) }
.tick-name { color: var(--t-dark); font-weight: 600 }
.tick-sep { color: var(--border2); font-size: 10px }

/* ── STATS ROW ───────────────────────────────── */
.stats-band {
  background: var(--ink2); padding: 60px 48px;
}
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: var(--r3); overflow: hidden }
.stat-item { background: var(--ink2); padding: 32px 28px; text-align: center }
.stat-val { font-family: 'Manrope', sans-serif; font-size: 40px; font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1 }
.stat-lbl { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 8px; font-weight: 500 }

/* ── PRODUCTS ────────────────────────────────── */
.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px }
.fchip {
  font-size: 13px; font-weight: 500; border: 1.5px solid var(--border2);
  background: #fff; color: var(--t-muted); padding: 7px 18px;
  border-radius: 100px; cursor: pointer; transition: all 0.15s;
}
.fchip:hover { border-color: var(--blue); color: var(--blue) }
.fchip.on { background: var(--blue); border-color: var(--blue); color: #fff }

.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px }
.pcard {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r3);
  padding: 28px; cursor: pointer; transition: all 0.2s; display: flex; flex-direction: column;
}
.pcard:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(26,86,255,0.12); transform: translateY(-3px) }
.pc-icon {
  width: 52px; height: 52px; border-radius: var(--r2); background: var(--blue-l);
  display: grid; place-items: center; font-size: 24px; margin-bottom: 20px;
}
.pc-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px }
.pc-name { font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 800; color: var(--t-dark); letter-spacing: -0.5px; margin-bottom: 4px }
.pc-tagline { font-size: 13px; font-weight: 500; color: var(--t-muted); margin-bottom: 12px }
.pc-desc { font-size: 14px; color: var(--t-body); line-height: 1.65; flex: 1; margin-bottom: 16px }
.pc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px }
.ptag {
  font-size: 11px; font-weight: 500; color: var(--ink3);
  background: var(--surface); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 100px;
}
.pc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border) }
.pc-meta { font-size: 12px; color: var(--t-muted); font-weight: 500 }
.pc-link { font-size: 13px; font-weight: 600; color: var(--blue) }
.pcard:hover .pc-link { text-decoration: underline }

/* ── AI SECTION ──────────────────────────────── */
.ai-section { background: var(--hero-bg); padding: 96px 48px; position: relative; overflow: hidden }
.ai-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(26,86,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.ai-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center }
.agents-list { display: flex; flex-direction: column; gap: 10px; margin-top: 32px }
.agent-row {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r2); transition: all 0.2s;
}
.agent-row:hover { background: rgba(255,255,255,0.08); border-color: rgba(26,86,255,0.4) }
.agent-emoji { font-size: 22px; flex-shrink: 0; margin-top: 1px }
.agent-title { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px }
.agent-body { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5 }
.agent-badge { margin-left: auto; flex-shrink: 0; background: rgba(26,86,255,0.2); border: 1px solid rgba(26,86,255,0.3); border-radius: 100px; padding: 2px 10px; font-size: 11px; font-weight: 600; color: #93BBFF; white-space: nowrap }

/* Terminal */
.terminal {
  background: var(--ink); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r3); overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.term-bar { height: 40px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; padding: 0 16px; gap: 7px }
.tdot { width: 10px; height: 10px; border-radius: 50% }
.term-title { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.3); margin-left: 6px; letter-spacing: 0.5px }
.term-body { padding: 24px; font-family: 'Manrope', monospace; font-size: 13px; line-height: 2; color: rgba(255,255,255,0.5); min-height: 300px }
.tc { color: rgba(255,255,255,0.25) }
.tb { color: #93BBFF }
.tg { color: #6EE7B7 }
.ty { color: #FCD34D }
.tr { color: #FCA5A5 }
#term-cursor { display: inline-block; width: 8px; height: 14px; background: var(--blue); animation: blink 1s step-end infinite; vertical-align: middle; margin-left: 2px; border-radius: 1px }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── COMPARISON ──────────────────────────────── */
.cmp-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r4); overflow: hidden; box-shadow: var(--shadow-md) }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14px }
.cmp-table th { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--t-muted); padding: 16px 20px; text-align: left; background: var(--surface); border-bottom: 1px solid var(--border); white-space: nowrap }
.cmp-table th.us { color: var(--blue); background: var(--blue-l) }
.cmp-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--t-body); background: #fff }
.cmp-table td.us { background: #FAFCFF; font-weight: 600 }
.cmp-table tr:last-child td { border-bottom: none }
.cmp-table tr:hover td { background: var(--surface) }
.cmp-table tr:hover td.us { background: #EEF3FF }
.feat-name { color: var(--t-dark); font-weight: 600 }
.chk-y { color: var(--green); font-size: 16px }
.chk-n { color: var(--border2); font-size: 16px }
.chk-p { font-size: 12px; font-weight: 500; color: var(--amber); background: #FFFBEB; border: 1px solid #FDE68A; padding: 2px 8px; border-radius: 4px; display: inline-block }

/* ── UAE SECTION ─────────────────────────────── */
.uae-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start }
.uae-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px }
.uae-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r3); padding: 24px;
  transition: all 0.2s;
}
.uae-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px) }
.uae-icon { width: 40px; height: 40px; border-radius: var(--r); background: var(--blue-l); display: grid; place-items: center; font-size: 18px; margin-bottom: 14px }
.uae-title { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: var(--t-dark); margin-bottom: 5px }
.uae-desc { font-size: 13px; color: var(--t-muted); line-height: 1.55 }

.uae-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px }
.ustat { background: var(--blue); border-radius: var(--r3); padding: 28px; text-align: center }
.ustat-val { font-family: 'Manrope', sans-serif; font-size: 38px; font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1 }
.ustat-lbl { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; font-weight: 500 }

/* ── PILLARS ─────────────────────────────────── */
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px }
.pillar-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r3); padding: 28px; transition: all 0.2s;
}
.pillar-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px) }
.pillar-icon { font-size: 28px; margin-bottom: 16px }
.pillar-title { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: var(--t-dark); margin-bottom: 6px }
.pillar-body { font-size: 13px; color: var(--t-muted); line-height: 1.6 }

/* ── CTA BAND ────────────────────────────────── */
.cta-band {
  background: var(--blue); padding: 80px 48px; text-align: center;
}
.cta-band .h-xl { color: #fff; margin-bottom: 12px }
.cta-inner { max-width: 640px; margin: 0 auto }
.cta-lead { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 32px }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap }

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--ink2); padding: 64px 48px 32px;
}
.foot-wrap { max-width: 1280px; margin: 0 auto }
.foot-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px }
.foot-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px }
.foot-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 300px }
.foot-col h5 { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px }
.foot-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s }
.foot-col a:hover { color: #fff }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center }
.foot-copy { font-size: 13px; color: rgba(255,255,255,0.3) }
.foot-links { display: flex; gap: 20px }
.foot-links a { font-size: 13px; color: rgba(255,255,255,0.35) }
.foot-links a:hover { color: rgba(255,255,255,0.7) }

/* ── PRODUCT PAGES ───────────────────────────── */
.prod-hero {
  background: var(--hero-bg); padding: 120px 48px 80px; position: relative; overflow: hidden;
}
.prod-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(26,86,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.prod-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
}
.prod-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2 }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 28px; display: flex; align-items: center; gap: 6px }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.15s }
.breadcrumb a:hover { color: #fff }
.bc-sep { color: rgba(255,255,255,0.2) }

.prod-hero-layout { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: start }
.prod-icon { width: 72px; height: 72px; border-radius: 18px; background: rgba(26,86,255,0.2); border: 1px solid rgba(26,86,255,0.3); display: grid; place-items: center; font-size: 34px; margin-bottom: 24px }
.prod-title { font-family: 'Manrope', sans-serif; font-size: clamp(36px,5vw,60px); font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1; margin-bottom: 10px }
.prod-tagline { font-size: 20px; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 16px }
.prod-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 600px; margin-bottom: 28px }
.prod-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px }
.pbadge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 5px 14px;
}
.pbadge::before { content: '✓'; color: var(--green); font-size: 11px }

.stat-strip {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r3); overflow: hidden; min-width: 280px;
}
.sstat { padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.06) }
.sstat:last-child { border-bottom: none }
.sstat-v { font-family: 'Manrope', sans-serif; font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -1px }
.sstat-l { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 3px; font-weight: 500 }

/* Product body */
.prod-body { background: var(--surface); padding: 64px 48px }
.prod-layout { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start }
.prod-main { display: flex; flex-direction: column; gap: 16px }
.prod-sidebar { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 84px }

/* Mod card */
.mod-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r3); overflow: hidden }
.mod-header { background: var(--surface); border-bottom: 1px solid var(--border); padding: 18px 24px; display: flex; align-items: center; gap: 14px }
.mod-emoji { font-size: 22px; flex-shrink: 0 }
.mod-title { font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 700; color: var(--t-dark) }
.mod-sub { font-size: 13px; color: var(--t-muted); margin-top: 2px }
.mod-body { padding: 20px 24px }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden }
.feat-item { background: #fff; padding: 12px 16px; display: flex; align-items: flex-start; gap: 10px; transition: background 0.15s }
.feat-item:hover { background: var(--surface) }
.feat-chk { color: var(--blue); font-size: 11px; flex-shrink: 0; margin-top: 3px }
.feat-txt { font-size: 13px; color: var(--t-body); line-height: 1.5 }

/* Sidebar cards */
.scard { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r3); overflow: hidden }
.scard-hdr { background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 18px; font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--t-muted) }
.scard-body { padding: 16px 18px }
.cta-box {
  background: var(--ink2); border-radius: var(--r3); padding: 24px; position: relative; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,86,255,0.25) 0%, transparent 70%) }
.cta-box h4 { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 6px; position: relative }
.cta-box p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 16px; position: relative }
.cta-box .btn { width: 100%; justify-content: center; position: relative; margin-bottom: 8px }
.univ-list { display: flex; flex-direction: column; gap: 8px }
.univ-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--t-body) }
.univ-chk { color: var(--green); font-size: 13px; flex-shrink: 0 }
.tech-pills { display: flex; flex-wrap: wrap; gap: 6px }
.tpill { font-size: 12px; font-weight: 500; color: var(--ink3); background: var(--surface); border: 1px solid var(--border2); padding: 4px 10px; border-radius: 100px }
.role-chips { display: flex; flex-wrap: wrap; gap: 6px }
.rchip { font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 100px; background: #EDE9FE; color: #6D28D9; border: 1px solid #DDD6FE }
.sinfo { display: flex; flex-direction: column; gap: 10px }
.sinfo-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px }
.sinfo-k { color: var(--t-muted) }
.sinfo-v { font-weight: 600; color: var(--t-dark) }

/* Screenshot mock */
.ss-shell { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r3); overflow: hidden; box-shadow: var(--shadow-md) }
.ss-topbar { height: 36px; background: var(--surface); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 14px; gap: 7px }
.ss-dot { width: 9px; height: 9px; border-radius: 50% }
.ss-url { font-size: 11px; color: var(--t-faint); margin-left: 8px }
.ss-content { padding: 16px; display: flex; flex-direction: column; gap: 10px }
.ss4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px }
.ss2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px }
.ss-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r2); padding: 12px }
.ss-bh { height: 6px; background: var(--border2); border-radius: 3px; margin-bottom: 8px }
.ss-bv { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; color: var(--t-dark); letter-spacing: -0.5px }
.ss-bl { font-size: 10px; color: var(--t-faint); margin-top: 2px }
.ss-prog { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; margin-top: 8px }
.ss-fill { height: 100%; border-radius: 2px; background: var(--blue) }

/* Related */
.rel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px }
.rel-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r3); padding: 20px; display: flex; gap: 14px; align-items: flex-start; transition: all 0.2s }
.rel-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-md) }
.rel-icon { font-size: 22px; flex-shrink: 0 }
.rel-name { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: var(--t-dark) }
.rel-sub { font-size: 12px; color: var(--t-muted); margin-top: 2px }

/* ── CONTACT ─────────────────────────────────── */
.contact-hero { background: var(--hero-bg); padding: 120px 48px 80px; position: relative; overflow: hidden }
.contact-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 30% 50%, rgba(26,86,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.contact-body { max-width: 1280px; margin: 0 auto; padding: 64px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px }
.cinfo-list { display: flex; flex-direction: column; gap: 12px }
.cinfo-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--r3); transition: all 0.2s }
.cinfo-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm) }
.cinfo-icon { width: 42px; height: 42px; border-radius: var(--r2); background: var(--blue-l); display: grid; place-items: center; font-size: 18px; flex-shrink: 0 }
.cinfo-item h4 { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; color: var(--t-dark); margin-bottom: 3px }
.cinfo-item p, .cinfo-item a { font-size: 13px; color: var(--t-muted) }
.cinfo-item a:hover { color: var(--blue) }
.cform { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r4); padding: 36px; box-shadow: var(--shadow-md) }
.cform h3 { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 800; color: var(--t-dark); margin-bottom: 4px; letter-spacing: -0.5px }
.cform > p { font-size: 14px; color: var(--t-muted); margin-bottom: 24px }
.fg { margin-bottom: 14px }
.fg label { display: block; font-size: 13px; font-weight: 600; color: var(--t-dark); margin-bottom: 5px }
.fg input, .fg textarea, .fg select {
  width: 100%; background: var(--surface); border: 1.5px solid var(--border2);
  border-radius: var(--r2); padding: 10px 14px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--t-dark); outline: none; transition: border-color 0.15s, box-shadow 0.15s; resize: vertical;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,255,0.1); background: #fff;
}
.fg select option { background: #fff }
.fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px }
.map-ph { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--r3); height: 140px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; margin-top: 16px; font-size: 13px; color: var(--t-muted) }
.map-ph a { color: var(--blue) }

/* ── RESPONSIVE ─────────────────────────────── */
@media(max-width:1100px){
  .hero-grid, .ai-inner, .uae-grid, .prod-layout, .prod-hero-layout { grid-template-columns: 1fr; gap: 48px }
  .prod-grid { grid-template-columns: repeat(2,1fr) }
  .pillars-grid { grid-template-columns: repeat(2,1fr) }
  .prod-sidebar { position: static }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px }
  .contact-body { grid-template-columns: 1fr; padding: 40px }
  .stat-strip { min-width: unset }
  .stats-inner { grid-template-columns: repeat(2,1fr) }
}
@media(max-width:768px){
  .nav { padding: 0 20px } .nav-links { display: none }
  .hero, .ai-section, .cta-band { padding-left: 20px; padding-right: 20px }
  .section, .prod-body, .prod-hero, .contact-hero { padding-left: 20px; padding-right: 20px }
  .wrap { padding: 0 20px }
  footer { padding-left: 20px; padding-right: 20px }
  .foot-grid { grid-template-columns: 1fr }
  .prod-grid, .rel-grid, .ss4, .uae-cards, .uae-stats, .fg2 { grid-template-columns: 1fr }
  .stats-band { padding-left: 20px; padding-right: 20px }
  .h-display { letter-spacing: -1.5px }
}
