/* ============================================================
   Accordium Suite — Landing styles
   Corporate blue palette · tech / IA · responsive
   ============================================================ */

:root{
  /* Brand */
  --navy-950:#050B1F;
  --navy-900:#0A1535;
  --navy-800:#0F1F4D;
  --navy-700:#152A66;
  --blue-800:#1E3A8A;
  --blue-700:#1E40AF;
  --blue-600:#2563EB;
  --blue-500:#3B82F6;
  --blue-400:#60A5FA;
  --blue-300:#93C5FD;
  --blue-100:#DBEAFE;
  --blue-50:#EFF6FF;
  --cyan-400:#22D3EE;
  --cyan-300:#67E8F9;

  /* Neutrals */
  --ink:#0A1535;
  --ink-2:#1F2A4A;
  --muted:#5B6786;
  --line:#E4ECF7;
  --line-2:#D6E1F2;
  --bg:#FFFFFF;
  --bg-soft:#F6F9FE;
  --bg-alt:#EEF4FD;

  --radius:18px;
  --radius-sm:12px;
  --radius-lg:28px;

  --shadow-sm: 0 2px 6px rgba(15,31,77,.06);
  --shadow-md: 0 12px 32px -8px rgba(15,31,77,.18);
  --shadow-lg: 0 30px 80px -20px rgba(15,31,77,.35);

  --font-display:'Space Grotesk', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body:'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;

  --container: 1200px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img,svg{display:block; max-width:100%}
a{color:inherit; text-decoration:none}
button{font-family:inherit; cursor:pointer; border:0; background:transparent}
h1,h2,h3,h4,h5{font-family:var(--font-display); letter-spacing:-0.02em; line-height:1.1; margin:0}
p{margin:0}
ul{margin:0; padding:0; list-style:none}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:600; font-size:14px;
  padding:10px 18px; border-radius:999px;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
  font-family:var(--font-body);
}
.btn-lg{font-size:15px; padding:14px 24px}
.btn-block{display:inline-flex; justify-content:center; width:100%}
.btn-primary{
  background:linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
  color:#fff;
  box-shadow:0 8px 20px -6px rgba(37,99,235,.55), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover{transform:translateY(-1px); box-shadow:0 14px 28px -8px rgba(37,99,235,.65)}
.btn-outline{
  border:1.5px solid var(--blue-200, rgba(96,165,250,.6));
  color:var(--blue-100);
}
.btn-outline:hover{background:rgba(96,165,250,.12); border-color:var(--blue-400)}
.btn-ghost{color:var(--ink); padding:10px 14px}
.btn-ghost:hover{color:var(--blue-700)}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.78);
  backdrop-filter:saturate(160%) blur(14px);
  -webkit-backdrop-filter:saturate(160%) blur(14px);
  border-bottom:1px solid rgba(214,225,242,.6);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; height:72px;
}
.brand{display:inline-flex; align-items:center; gap:12px}
.brand-mark{width:38px; height:38px; filter:drop-shadow(0 6px 14px rgba(37,99,235,.28))}
.brand-text{display:flex; flex-direction:column; line-height:1}
.brand-name{
  font-family:var(--font-display); font-weight:700; font-size:19px;
  letter-spacing:-0.02em; color:var(--navy-900);
}
.brand-suffix{
  font-size:10.5px; font-weight:600; letter-spacing:.18em;
  text-transform:uppercase; color:var(--blue-600); margin-top:2px;
}
.brand-light .brand-name{color:#fff}
.brand-light .brand-suffix{color:var(--cyan-300)}

.primary-nav{display:flex; gap:8px}
.primary-nav a{
  font-size:14px; font-weight:500; color:var(--ink-2);
  padding:8px 14px; border-radius:999px; transition:.2s;
}
.primary-nav a:hover{color:var(--blue-700); background:var(--blue-50)}

.header-cta{display:flex; align-items:center; gap:8px}

.nav-toggle{
  display:none;
  flex-direction:column; gap:5px;
  width:42px; height:42px;
  border-radius:12px;
  align-items:center; justify-content:center;
  border:1px solid var(--line);
}
.nav-toggle span{
  width:18px; height:2px; background:var(--ink); border-radius:2px;
  transition:.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-nav{
  display:flex; flex-direction:column; gap:4px;
  padding:18px 24px 24px;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.98);
}
.mobile-nav[hidden]{display:none}
.mobile-nav a{
  padding:14px 12px; border-radius:12px;
  font-weight:600; color:var(--ink-2);
}
.mobile-nav a:hover{background:var(--blue-50); color:var(--blue-700)}
.mobile-nav .btn{margin-top:8px}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; overflow:hidden; isolation:isolate;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(900px 600px at 0% 20%, rgba(59,130,246,.18), transparent 55%),
    linear-gradient(180deg, #050B1F 0%, #0A1535 60%, #0F1F4D 100%);
  color:#E5ECFB;
  padding:96px 0 60px;
}
.hero-bg{position:absolute; inset:0; z-index:-1; pointer-events:none}
.hero-grid{position:absolute; inset:0; width:100%; height:100%; opacity:.55}
.hero-orb{
  position:absolute; border-radius:50%; filter:blur(80px);
  opacity:.55; pointer-events:none;
}
.hero-orb-1{width:520px; height:520px; background:#2563EB; top:-160px; right:-120px}
.hero-orb-2{width:380px; height:380px; background:#22D3EE; bottom:-160px; left:-80px; opacity:.35}
.hero-orb-3{width:240px; height:240px; background:#60A5FA; top:40%; left:50%; opacity:.3}

.hero-inner{
  display:grid; grid-template-columns:1.05fr .95fr; gap:64px;
  align-items:center; min-height:560px;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:600; letter-spacing:.04em;
  padding:7px 14px;
  border-radius:999px;
  background:rgba(96,165,250,.12);
  border:1px solid rgba(96,165,250,.28);
  color:#BFD4FF;
  text-transform:none;
}
.eyebrow-dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--cyan-400);
  box-shadow:0 0 0 4px rgba(34,211,238,.18);
}
.eyebrow-dark{
  background:#EAF1FE; color:var(--blue-700); border-color:#CFDEFB;
}

.hero-title{
  font-size:clamp(36px, 5vw, 64px);
  font-weight:700; letter-spacing:-0.03em;
  margin:18px 0 18px;
  color:#fff;
  text-wrap:balance;
}
.grad-text{
  background:linear-gradient(90deg, #60A5FA 0%, #22D3EE 60%, #93C5FD 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{
  font-size:clamp(15px, 1.4vw, 18px);
  color:#B7C4E5; max-width:600px;
  text-wrap:pretty;
}
.hero-actions{display:flex; gap:12px; margin-top:28px; flex-wrap:wrap}
.hero-stats{
  display:flex; align-items:center; gap:24px;
  margin-top:42px; padding-top:28px;
  border-top:1px solid rgba(255,255,255,.08);
  flex-wrap:wrap;
}
.hero-stats > div:not(.divider){display:flex; flex-direction:column}
.hero-stats strong{
  font-family:var(--font-display); font-size:28px; font-weight:700;
  color:#fff; letter-spacing:-0.02em;
}
.hero-stats span{font-size:12.5px; color:#94A6CD; margin-top:2px}
.hero-stats .divider{
  width:1px; height:32px; background:rgba(255,255,255,.12);
}

/* Hero visual */
.hero-visual{
  position:relative; height:580px;
  display:flex; align-items:center; justify-content:center;
}
.hv-glow{
  position:absolute; width:420px; height:420px;
  background:radial-gradient(closest-side, rgba(34,211,238,.35), transparent 70%);
  filter:blur(10px); border-radius:50%;
}
.hv-emblem{
  width:340px; height:340px; position:relative;
  animation:floaty 8s ease-in-out infinite;
  filter:drop-shadow(0 30px 60px rgba(34,211,238,.35));
}
@keyframes floaty{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
@keyframes floaty2{
  0%,100%{transform:translateY(0) rotate(-3deg)}
  50%{transform:translateY(-8px) rotate(-3deg)}
}
@keyframes floaty3{
  0%,100%{transform:translateY(0) rotate(4deg)}
  50%{transform:translateY(-12px) rotate(4deg)}
}

.hv-card{
  position:absolute; width:260px;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(214,225,242,.8);
  border-radius:16px;
  box-shadow:0 24px 50px -12px rgba(5,11,31,.55);
  padding:14px 16px;
  color:var(--ink);
  backdrop-filter:blur(8px);
}
.hv-card-1{top:-10px; left:-20px; width:230px; animation:floaty2 7s ease-in-out infinite}
.hv-card-2{top:20px; right:-20px; width:225px; animation:floaty3 8s ease-in-out infinite}
.hv-card-3{top:210px; right:-40px; width:230px; animation:floaty 9s ease-in-out infinite}
.hv-card-4{bottom:0; left:-20px; width:200px; animation:floaty3 10s ease-in-out infinite}
.hv-card-5{bottom:-20px; right:30px; width:210px; animation:floaty2 11s ease-in-out infinite}

.hv-card-head{
  display:flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600;
}
.hv-card-head svg{flex:0 0 auto}
.hv-dot{width:8px; height:8px; border-radius:50%}
.hv-dot-blue{background:var(--blue-600)}
.hv-dot-cyan{background:var(--cyan-400)}
.hv-dot-indigo{background:#6366F1}
.hv-dot-grad{background:linear-gradient(135deg, var(--cyan-400), var(--blue-600))}
.hv-badge{
  margin-left:auto; font-size:10px; font-weight:700; letter-spacing:.08em;
  padding:3px 8px; border-radius:999px;
  background:linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  color:#fff;
}
.hv-badge-soft{
  background:var(--blue-50); color:var(--blue-700);
}
.hv-card-body{margin-top:10px; display:flex; flex-direction:column; gap:8px}
.hv-line{height:8px; border-radius:4px; background:linear-gradient(90deg, #E4ECF7, #F1F5FB)}
.hv-line.w90{width:90%} .hv-line.w80{width:80%} .hv-line.w60{width:60%}
.hv-chip-row{display:flex; gap:6px; margin-top:4px}
.hv-chip{
  font-size:10.5px; font-weight:600;
  padding:4px 8px; border-radius:6px;
  background:var(--blue-50); color:var(--blue-700);
}
.hv-chip-cyan{background:#E0F7FB; color:#0E7490}

.hv-rep-row{
  display:flex; justify-content:space-between; align-items:center;
  font-size:12px; color:var(--muted);
}
.hv-rep-row strong{
  font-family:var(--font-display); font-weight:700; font-size:15px;
  color:var(--ink);
}
.hv-rep-accent{color:var(--blue-700) !important}
.hv-bar{
  height:6px; border-radius:4px; background:#EEF2FA; overflow:hidden;
  margin-top:4px;
}
.hv-bar > span{
  display:block; height:100%; border-radius:4px;
  background:linear-gradient(90deg, var(--blue-500), var(--cyan-400));
}

.hv-tile-row{display:grid; grid-template-columns:1fr 1fr; gap:6px}
.hv-tile{
  font-size:11px; font-weight:600;
  padding:8px 10px; border-radius:8px;
  background:var(--bg-soft); color:var(--ink-2);
  border:1px solid var(--line);
  text-align:center;
}
.hv-tile-accent{
  background:linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color:#fff; border-color:transparent;
}

.hv-stat-row{display:flex; gap:14px}
.hv-stat-row strong{
  display:block; font-family:var(--font-display); font-size:20px; font-weight:700;
}
.hv-stat-row span{font-size:11px; color:var(--muted)}
.hv-spark{width:100%; height:36px}

.hv-doc-stack{position:relative; height:50px}
.hv-doc{
  position:absolute; width:60px; height:42px; border-radius:6px;
  background:linear-gradient(135deg, #DBEAFE, #BFDBFE);
  border:1px solid #BFDBFE;
}
.hv-doc:nth-child(1){left:0; top:0; transform:rotate(-6deg)}
.hv-doc:nth-child(2){left:46px; top:4px; transform:rotate(2deg)}
.hv-doc:nth-child(3){left:92px; top:0; transform:rotate(8deg); background:linear-gradient(135deg,#22D3EE,#60A5FA); border-color:#67E8F9}

/* Trust bar */
.trust-bar{
  margin-top:72px; padding-top:32px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex; flex-direction:column; align-items:center; gap:18px;
}
.trust-label{font-size:12px; letter-spacing:.18em; text-transform:uppercase; color:#7E8FB8}
.trust-logos{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center;
  gap:36px; opacity:.7;
}
.trust-logo{
  font-family:var(--font-display); font-weight:600; font-size:15px;
  letter-spacing:.06em; color:#B7C4E5;
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section{padding:104px 0; position:relative}
.section-head{text-align:center; max-width:760px; margin:0 auto 56px}
.section-title{
  font-size:clamp(28px, 3.4vw, 44px); font-weight:700;
  margin:14px 0 14px; letter-spacing:-0.025em;
  text-wrap:balance;
}
.section-title.light{color:#fff}
.section-sub{
  color:var(--muted); font-size:17px; max-width:640px; margin:0 auto;
  text-wrap:pretty;
}
.section-sub.light{color:#B7C4E5}

/* Suite section */
.section-suite{background:var(--bg-soft)}
.suite-diagram{
  position:relative; max-width:880px; margin:0 auto;
  height:340px;
}
.sd-core{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:140px; height:140px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 30px 60px -10px rgba(37,99,235,.45);
}
.sd-core svg{width:100%; height:100%}
.sd-lines{position:absolute; inset:0; width:100%; height:100%; pointer-events:none}
.sd-node{
  position:absolute;
  background:#fff;
  border:1px solid var(--line-2);
  border-radius:14px;
  padding:14px 18px;
  font-family:var(--font-display); font-weight:600; font-size:15px;
  color:var(--navy-900);
  box-shadow:var(--shadow-sm);
  display:flex; align-items:center; gap:10px;
}
.sd-node::before{
  content:""; width:8px; height:8px; border-radius:50%;
  background:var(--blue-600);
  box-shadow:0 0 0 4px rgba(37,99,235,.15);
}
.sd-n1{top:30px; left:6%}
.sd-n2{top:30px; right:6%}
.sd-n3{bottom:30px; left:6%}
.sd-n4{bottom:30px; right:6%}
.sd-n3::before, .sd-n4::before{background:var(--cyan-400); box-shadow:0 0 0 4px rgba(34,211,238,.18)}

/* Products — large stacked rows */
.section-products{background:#fff}
.product-rows{display:flex; flex-direction:column; gap:32px}
.product-row{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:48px;
  align-items:center;
  background:linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border:1px solid var(--line);
  border-radius:28px;
  padding:48px;
  transition:.3s;
}
.product-row:hover{
  border-color:var(--blue-300);
  box-shadow:var(--shadow-md);
}
.product-row.reverse .pr-visual{order:-1}
.pr-copy{display:flex; flex-direction:column; gap:14px}
.pr-num{
  font-family:'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size:12px; letter-spacing:.14em;
  color:var(--blue-700);
  display:inline-flex; align-items:center; gap:8px;
}
.pr-num::before{
  content:""; width:24px; height:1.5px; background:var(--blue-500);
}
.pr-copy h3{
  font-size:clamp(28px, 3vw, 38px);
  font-weight:700; margin-top:4px;
}
.pr-tag{
  font-size:13px; font-weight:600;
  color:var(--blue-700);
  text-transform:uppercase; letter-spacing:.06em;
}
.pr-desc{
  color:var(--ink-2); font-size:15.5px; line-height:1.65;
  margin-bottom:6px;
}
.pr-list{
  display:flex; flex-direction:column; gap:14px;
  margin:8px 0 20px;
}
.pr-list li{
  display:flex; flex-direction:column; gap:2px;
  padding-left:24px; position:relative;
}
.pr-list li::before{
  content:""; position:absolute; left:0; top:8px;
  width:14px; height:8px;
  border-left:2px solid var(--blue-600);
  border-bottom:2px solid var(--blue-600);
  transform:rotate(-45deg);
}
.pr-list strong{font-size:14.5px; font-family:var(--font-display); font-weight:600; color:var(--ink)}
.pr-list span{font-size:13.5px; color:var(--muted)}
.pr-copy .btn{align-self:flex-start; margin-top:6px}

.pr-visual{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 24px 60px -20px rgba(15,31,77,.25);
}
.pr-svg{width:100%; height:auto; display:block}

@media (max-width: 980px){
  .product-row{grid-template-columns:1fr; gap:32px; padding:32px}
  .product-row.reverse .pr-visual{order:0}
}
@media (max-width: 560px){
  .product-row{padding:24px; border-radius:22px}
  .pr-copy h3{font-size:26px}
}

/* Benefits */
.section-benefits{
  background:linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}

/* ============================================================
   OPERATIONAL BENEFITS
   ============================================================ */
.section-ops{
  background:linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.ops-kpis{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:18px;
  margin-bottom:48px;
}
.ops-kpi{
  background:#fff; border:1px solid var(--line);
  border-radius:18px; padding:24px;
  position:relative; overflow:hidden;
}
.ops-kpi::before{
  content:""; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--cyan-400), var(--blue-600));
}
.ops-kpi-label{
  font-family:'JetBrains Mono', ui-monospace, monospace;
  font-size:11px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--muted);
}
.ops-kpi-value{
  display:block;
  font-family:var(--font-display);
  font-size:clamp(40px, 5vw, 56px);
  font-weight:700; line-height:1;
  margin:10px 0 8px;
  background:linear-gradient(135deg, var(--navy-900), var(--blue-600));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  letter-spacing:-.02em;
}
.ops-kpi-value small{
  font-size:.6em; font-weight:700;
  background:linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.ops-kpi-sub{
  font-size:13px; color:var(--muted); line-height:1.5;
}

.ops-workflow{
  display:flex; align-items:center; gap:10px;
  background:linear-gradient(135deg, var(--navy-900), var(--blue-800));
  border-radius:24px;
  padding:32px 28px;
  margin-bottom:48px;
  flex-wrap:wrap;
  justify-content:space-between;
  position:relative; overflow:hidden;
}
.ops-workflow::before{
  content:""; position:absolute; right:-100px; top:-100px;
  width:280px; height:280px; border-radius:50%;
  background:radial-gradient(closest-side, rgba(34,211,238,.35), transparent 70%);
  pointer-events:none;
}
.ow-step{
  flex:1 1 0; min-width:130px;
  display:flex; flex-direction:column; align-items:center;
  gap:8px; text-align:center;
  position:relative; z-index:1;
}
.ow-icon{
  width:52px; height:52px; border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(96,165,250,.35);
  display:flex; align-items:center; justify-content:center;
}
.ow-icon svg{width:22px; height:22px}
.ow-step h4{
  font-size:15px; color:#fff; font-family:var(--font-display);
}
.ow-step span{
  font-size:12px; color:#94A6CD;
}
.ow-arrow{
  width:32px; height:2px;
  background:linear-gradient(90deg, rgba(96,165,250,.6), rgba(34,211,238,.6));
  position:relative;
  flex:0 0 32px;
}
.ow-arrow::after{
  content:""; position:absolute; right:0; top:50%;
  transform:translateY(-50%);
  border:5px solid transparent;
  border-left-color:rgba(34,211,238,.8);
}

.ops-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
}
.op-card{
  background:#fff; border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
  transition:.25s;
}
.op-card:hover{
  border-color:var(--blue-300);
  transform:translateY(-2px);
  box-shadow:var(--shadow-sm);
}
.op-icon{
  width:44px; height:44px; border-radius:12px;
  background:linear-gradient(135deg, var(--blue-50), #fff);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
}
.op-icon svg{width:22px; height:22px}
.op-card h4{font-size:15.5px; margin-bottom:8px; font-family:var(--font-display)}
.op-card p{font-size:13.5px; color:var(--muted); line-height:1.6}

@media (max-width: 900px){
  .ops-kpis{grid-template-columns:1fr 1fr}
  .ops-workflow{padding:24px 20px}
  .ow-arrow{display:none}
}
@media (max-width: 560px){
  .ops-kpis{grid-template-columns:1fr}
  .ops-workflow{gap:18px}
  .ow-step{min-width:0; flex:1 1 40%}
}
.benefits-grid{
  display:grid; grid-template-columns:.85fr 1.15fr; gap:64px;
  align-items:start;
}
.benefits-copy{position:sticky; top:96px}
.benefits-copy .section-title{margin-top:14px}
.benefits-copy .section-sub{margin:18px 0 28px; max-width:none}
.benefits-list{
  display:grid; grid-template-columns:1fr 1fr; gap:24px;
}
.benefit{
  display:flex; gap:16px;
  padding:22px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  transition:.25s;
}
.benefit:hover{border-color:var(--blue-300); transform:translateY(-2px); box-shadow:var(--shadow-sm)}
.benefit-icon{
  flex:0 0 44px; width:44px; height:44px; border-radius:12px;
  background:linear-gradient(135deg, var(--blue-50), #fff);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
}
.benefit-icon svg{width:22px; height:22px}
.benefit h4{font-size:15.5px; margin-bottom:6px; font-family:var(--font-display)}
.benefit p{font-size:13.5px; color:var(--muted); line-height:1.55}

/* AI band */
.section-ai{
  background:
    radial-gradient(800px 400px at 90% 30%, rgba(34,211,238,.22), transparent 60%),
    radial-gradient(700px 400px at 10% 70%, rgba(59,130,246,.18), transparent 55%),
    linear-gradient(180deg, #0A1535 0%, #050B1F 100%);
  color:#E5ECFB; overflow:hidden; isolation:isolate;
}
.ai-bg{position:absolute; inset:0; z-index:-1; opacity:.6}
.ai-bg svg{width:100%; height:100%}
.ai-grid{display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center}
.ai-copy .section-title{margin-top:14px}
.ai-copy .section-sub{margin:18px 0 24px}
.ai-bullets{display:flex; flex-direction:column; gap:10px; margin-top:12px}
.ai-bullets li{
  position:relative; padding-left:28px; color:#CBD8F2; font-size:15px;
}
.ai-bullets li::before{
  content:""; position:absolute; left:0; top:6px;
  width:16px; height:10px;
  border-left:2px solid var(--cyan-400);
  border-bottom:2px solid var(--cyan-400);
  transform:rotate(-45deg);
}

.ai-visual{position:relative}
.ai-chat{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(96,165,250,.22);
  border-radius:var(--radius-lg);
  padding:24px;
  backdrop-filter:blur(6px);
  box-shadow:0 30px 80px -20px rgba(5,11,31,.65);
  display:flex; flex-direction:column; gap:14px;
}
.ai-chat-head{
  display:flex; align-items:center; gap:12px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(96,165,250,.18);
  margin-bottom:6px;
}
.ai-chat-head > div:not(.ai-avatar){display:flex; flex-direction:column; line-height:1.2}
.ai-chat-head strong{font-family:var(--font-display); font-size:14px; color:#fff}
.ai-chat-head > div span{font-size:11px; color:#94A6CD; font-family:'JetBrains Mono', monospace; margin-top:2px}
.ai-avatar{
  width:36px; height:36px; border-radius:10px;
  background:linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  flex:0 0 36px;
  position:relative;
}
.ai-avatar::after{
  content:""; position:absolute; right:-2px; bottom:-2px;
  width:10px; height:10px; border-radius:50%;
  background:#22C55E; border:2px solid #0A1535;
}
.ai-live{
  margin-left:auto;
  font-family:'JetBrains Mono', monospace; font-size:10px;
  letter-spacing:.16em; color:#22D3EE;
  padding:4px 10px; border-radius:999px;
  background:rgba(34,211,238,.12); border:1px solid rgba(34,211,238,.3);
}

/* AGENTS GALLERY */
.agents-block{margin-top:72px}
.agents-head{text-align:center; max-width:680px; margin:0 auto 36px}
.agents-title{
  font-family:var(--font-display);
  font-size:clamp(24px, 2.6vw, 32px); font-weight:700;
  color:#fff; letter-spacing:-.02em;
  margin-bottom:10px;
}
.agents-sub{color:#94A6CD; font-size:15px}
.agents-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:16px;
}
.agent-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(96,165,250,.18);
  border-radius:18px;
  padding:22px;
  transition:.25s;
  backdrop-filter:blur(4px);
}
.agent-card:hover{
  border-color:rgba(96,165,250,.45);
  background:rgba(255,255,255,.06);
  transform:translateY(-2px);
}
.agent-head{display:flex; align-items:center; gap:12px; margin-bottom:12px}
.agent-head > div:last-child{display:flex; flex-direction:column; line-height:1.2}
.agent-head h4{font-family:var(--font-display); font-size:15.5px; color:#fff}
.agent-head span{font-size:11.5px; color:#94A6CD; margin-top:2px; font-family:'JetBrains Mono', monospace; letter-spacing:.04em}
.agent-avatar{
  width:42px; height:42px; border-radius:11px;
  flex:0 0 42px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; font-size:14px;
  color:#fff; letter-spacing:.02em;
}
.agent-avatar-1{background:linear-gradient(135deg, #60A5FA, #1E40AF)}
.agent-avatar-2{background:linear-gradient(135deg, #22D3EE, #2563EB)}
.agent-avatar-3{background:linear-gradient(135deg, #818CF8, #4F46E5)}
.agent-avatar-4{background:linear-gradient(135deg, #67E8F9, #0E7490)}
.agent-avatar-5{background:linear-gradient(135deg, #93C5FD, #1E3A8A)}
.agent-avatar-custom{
  background:transparent;
  border:1.5px dashed rgba(96,165,250,.5);
}
.agent-card p{font-size:13.5px; color:#CBD8F2; line-height:1.55; margin-bottom:14px}
.agent-tools{display:flex; gap:6px; flex-wrap:wrap}
.agent-tool{
  font-family:'JetBrains Mono', monospace;
  font-size:10.5px;
  padding:4px 10px; border-radius:6px;
  background:rgba(96,165,250,.10);
  color:#BFD4FF;
  border:1px solid rgba(96,165,250,.18);
}
.agent-card-custom{
  border-style:dashed;
  background:transparent;
}

/* CONTEXTS */
.contexts-block{margin-top:64px}
.contexts-head{text-align:center; max-width:680px; margin:0 auto 32px}
.contexts-title{
  font-family:var(--font-display);
  font-size:clamp(22px, 2.2vw, 28px); font-weight:700;
  color:#fff; letter-spacing:-.02em;
  margin-bottom:8px;
}
.contexts-sub{color:#94A6CD; font-size:14.5px}
.contexts-sub em{font-style:italic; color:#22D3EE; font-weight:600}
.contexts-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:14px;
}
.context{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(96,165,250,.18);
  border-radius:14px;
  padding:18px;
  display:flex; flex-direction:column; gap:6px;
}
.context-ico{
  width:36px; height:36px; border-radius:10px;
  background:rgba(34,211,238,.10);
  border:1px solid rgba(34,211,238,.25);
  color:#67E8F9;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:6px;
}
.context-ico svg{width:18px; height:18px}
.context strong{font-family:var(--font-display); font-size:14px; color:#fff}
.context span{font-size:12px; color:#94A6CD; line-height:1.5}
.ai-msg{
  border-radius:14px;
  padding:14px 16px;
  font-size:14px; max-width:90%;
}
.ai-msg-user{
  align-self:flex-end;
  background:linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color:#fff;
  border-bottom-right-radius:4px;
}
.ai-msg-bot{
  align-self:flex-start;
  background:rgba(255,255,255,.96);
  color:var(--ink);
  border-bottom-left-radius:4px;
}
.ai-msg-bot p{font-size:14px; line-height:1.55; margin-top:8px}
.ai-msg-head{display:flex; align-items:center; gap:8px; font-size:13px}
.ai-chips{display:flex; gap:6px; margin-top:10px; flex-wrap:wrap}
.ai-chip{
  font-size:11px; font-weight:600;
  padding:4px 10px; border-radius:999px;
  background:var(--blue-50); color:var(--blue-700);
}

/* Contact */
.section-contact{background:#fff}
.contact-grid{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:64px;
  align-items:start;
}
.contact-copy{position:sticky; top:96px}
.contact-copy .section-title{margin-top:14px}
.contact-copy .section-sub{margin:18px 0 28px; max-width:none}
.contact-info{display:flex; flex-direction:column; gap:14px; margin-top:24px}
.contact-info li{
  display:flex; align-items:center; gap:12px;
  font-size:14.5px; color:var(--ink-2);
}

.contact-form{
  background:linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column; gap:18px;
}
.field-row{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.field{display:flex; flex-direction:column; gap:6px}
.field > span{
  font-size:13px; font-weight:600; color:var(--ink-2);
}
.field input, .field textarea{
  font:inherit; font-size:14.5px; color:var(--ink);
  background:#fff;
  border:1.5px solid var(--line);
  border-radius:12px;
  padding:12px 14px;
  transition:border-color .15s ease, box-shadow .15s ease;
  width:100%;
}
.field textarea{resize:vertical; min-height:96px}
.field input:focus, .field textarea:focus{
  outline:none; border-color:var(--blue-500);
  box-shadow:0 0 0 4px rgba(59,130,246,.15);
}
.field input:invalid:not(:placeholder-shown){border-color:#EF4444}

.field-checks{
  border:0; padding:0; margin:0;
  display:grid; grid-template-columns:1fr 1fr; gap:8px 14px;
}
.field-checks legend{
  font-size:13px; font-weight:600; color:var(--ink-2);
  margin-bottom:8px;
}
.check{
  display:flex; align-items:center; gap:10px;
  font-size:14px; cursor:pointer;
  padding:6px 0;
}
.check input{
  appearance:none; -webkit-appearance:none;
  width:18px; height:18px; border:1.5px solid var(--line-2);
  border-radius:5px; background:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  transition:.15s; flex:0 0 18px;
}
.check input:checked{
  background:var(--blue-600); border-color:var(--blue-600);
}
.check input:checked::after{
  content:""; width:10px; height:6px;
  border-left:2px solid #fff; border-bottom:2px solid #fff;
  transform:rotate(-45deg) translate(1px,-1px);
}
.check-consent{font-size:13px; color:var(--muted)}

.form-status{
  font-size:14px; padding:12px 14px; border-radius:12px;
  background:#ECFDF5; color:#065F46; border:1px solid #A7F3D0;
}
.form-status.error{background:#FEF2F2; color:#991B1B; border-color:#FECACA}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background:linear-gradient(180deg, #050B1F 0%, #0A1535 100%);
  color:#B7C4E5;
  padding:64px 0 28px;
  margin-top:0;
}
.footer-inner{
  display:grid;
  grid-template-columns:1.2fr 2fr;
  gap:48px;
}
.footer-brand .brand-mark{width:42px; height:42px}
.footer-tag{
  margin-top:16px; font-size:14px; color:#8FA1C8; max-width:340px;
  line-height:1.6;
}
.socials{display:flex; gap:10px; margin-top:20px}
.socials a{
  width:38px; height:38px; border-radius:10px;
  display:inline-flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#B7C4E5;
  transition:.2s;
}
.socials a:hover{background:rgba(96,165,250,.15); color:#fff; border-color:rgba(96,165,250,.35)}

.footer-cols{
  display:grid;
  grid-template-columns:repeat(4, 1fr); gap:24px;
}
.footer-col{display:flex; flex-direction:column; gap:10px}
.footer-col h5{
  font-family:var(--font-display);
  font-size:13px; font-weight:600;
  color:#fff;
  letter-spacing:.06em; text-transform:uppercase;
  margin-bottom:6px;
}
.footer-col a{font-size:14px; color:#94A6CD; transition:.15s}
.footer-col a:hover{color:#fff}

.footer-base{
  margin-top:48px; padding-top:24px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px; color:#6E80A8;
  flex-wrap:wrap; gap:12px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px){
  .hero-inner{grid-template-columns:1fr; gap:40px}
  .hero-visual{height:480px; order:2}
  .benefits-grid{grid-template-columns:1fr; gap:40px}
  .benefits-copy{position:static}
  .contact-grid{grid-template-columns:1fr; gap:40px}
  .contact-copy{position:static}
  .ai-grid{grid-template-columns:1fr; gap:40px}
  .footer-inner{grid-template-columns:1fr; gap:32px}
}

@media (max-width: 880px){
  .primary-nav, .header-cta{display:none}
  .nav-toggle{display:flex}
  .header-inner{height:64px}
  .section{padding:72px 0}
  .hero{padding:64px 0 48px}
  .suite-diagram{height:auto; display:flex; flex-direction:column; gap:14px; align-items:center}
  .sd-core{position:relative; left:0; top:0; transform:none; order:0; width:120px; height:120px}
  .sd-node{position:relative; left:0; right:0; top:0; bottom:0}
  .sd-lines{display:none}
  .benefits-list{grid-template-columns:1fr}
  .field-row{grid-template-columns:1fr}
  .field-checks{grid-template-columns:1fr}
  .footer-cols{grid-template-columns:1fr 1fr; gap:32px 24px}
  .contact-form{padding:24px}
  .hero-stats{gap:18px}
  .hero-stats strong{font-size:22px}
  .hero-stats .divider{height:24px}
}

@media (max-width: 560px){
  .container{padding:0 18px}
  .brand-suffix{font-size:9.5px}
  .hero-actions .btn{width:100%; justify-content:center}
  .hero-actions{flex-direction:column}
  .hero-visual{height:480px}
  .hv-card{width:180px !important}
  .hv-card-1{top:-10px; left:-8px}
  .hv-card-2{top:0; right:-8px}
  .hv-card-3{top:auto; bottom:140px; right:-12px}
  .hv-card-4{bottom:0; left:-8px}
  .hv-card-5{display:none}
  .hv-emblem{width:240px; height:240px}
  .trust-logos{gap:20px}
  .footer-cols{grid-template-columns:1fr}
  .section-head{margin-bottom:36px}
  .product-card{padding:22px 20px}
  .footer-base{justify-content:flex-start}
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important}
  html{scroll-behavior:auto}
}
