/* agencyai — light editorial design system */
:root{
  --paper:#ffffff;
  --paper2:#f7f8fa;
  --ink:#1e1f21;
  --ink2:#414955;
  --line:#ebecf0;
  --line2:#dcdfe4;
  --accent:#0c66e4;
  --accent-ink:#0052cc;
  --band:#172033;
  --band-ink:#f7f8fa;
  --ok:#1f845a;
  --warn:#f5cd47;
  --danger:#c9372c;
  --background:var(--paper);
  --background-subtle:var(--paper2);
  --surface:#ffffff;
  --surface-muted:#f4f5f7;
  --surface-raised:#ffffff;
  --foreground:var(--ink);
  --foreground-soft:#292a2e;
  --muted-foreground:var(--ink2);
  --subtle-foreground:#525d6b;
  --border:var(--line2);
  --border-subtle:var(--line);
  --input:var(--line2);
  --ring:var(--accent);
  --primary:var(--accent);
  --primary-hover:var(--accent-ink);
  --primary-foreground:#ffffff;
  --secondary:#f1f2f4;
  --secondary-foreground:var(--ink);
  --accent-soft:#e9f2ff;
  --accent-foreground:var(--accent);
  --skeleton:#f1f2f4;
  --skeleton-shimmer:#ebecf0;
  --tree-selected:#e9f2ff;
  --tree-selected-text:var(--accent);
  --tree-hover:#f7f8fa;
  --band-muted:#c7ceda;
  --band-accent:#9db7ff;
  --band-line:rgba(247,248,250,.12);
  --band-success:#7dd3c7;
  --radius-card:16px;
  --radius-control:11px;
  --mono:'Roboto Condensed',Arial Narrow,sans-serif;
  --disp:'Montserrat',sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font:400 16.5px/1.65 'Montserrat',system-ui,sans-serif;
  color:var(--foreground);background:var(--background);
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;
}
.container{max-width:1440px;margin:0 auto;padding:0 48px}
a{color:var(--primary);text-decoration:none}
a:hover{color:var(--primary-hover)}
h1,h2,h3{font-family:var(--disp);font-weight:650;letter-spacing:-0.025em;line-height:1.08;text-wrap:balance}
h1{font-size:clamp(34px,4.6vw,62px)}
h2{font-size:clamp(26px,3vw,40px)}
h3{font-size:19px;letter-spacing:-0.01em;line-height:1.3}
p{text-wrap:pretty}
strong{font-weight:600}

/* ---------- eyebrow / section head ---------- */
.eyebrow{font-family:var(--mono);font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--ink2);display:flex;align-items:center;gap:12px;margin-bottom:18px}
.eyebrow.accent{color:var(--accent)}
.eyebrow .num{color:var(--accent);font-weight:500}
.eyebrow .num::after{content:"";display:inline-block;width:28px;height:1px;background:var(--line2);margin-left:12px;vertical-align:middle}
.sec{padding:88px 0;border-top:1px solid var(--line)}
.sec-alt{background:var(--background-subtle)}
.sec-head{max-width:780px;margin-bottom:48px}
.sec-lead{margin-top:16px;font-size:18px;color:var(--muted-foreground)}

/* ---------- header ---------- */
.hd{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.hd-in{display:flex;align-items:center;justify-content:space-between;gap:24px;height:64px}
.logo{font-family:var(--disp);font-weight:700;font-size:19px;letter-spacing:-0.03em;color:var(--ink)}
.logo span{color:var(--accent)}
.logo:hover{color:var(--ink)}
.nav{display:flex;align-items:center;gap:2px}
.nav-link{display:flex;align-items:center;gap:6px;padding:8px 13px;font-size:14.5px;font-weight:500;color:var(--ink2);border-radius:8px;transition:color .18s ease,background-color .18s ease}
.nav-link:hover,.nav-link[aria-current],.has-dd.is-open>.nav-link{color:var(--ink)}
.ndl{opacity:.5;transform-origin:50% 45%;transition:transform .22s cubic-bezier(.22,1,.36,1),opacity .18s ease}
.has-dd.is-open>.nav-link .ndl{opacity:.9;transform:rotate(180deg)}
.nav-item{position:relative}

/* Stripe-inspired interaction model; AgencyAI visual language stays intact. */
.dd{position:fixed;top:64px;left:50%;z-index:110;display:block;width:min(1440px,calc(100% - 32px));padding-top:0;visibility:hidden;opacity:0;pointer-events:none;transform:translateX(-50%);transition:opacity .3s cubic-bezier(.45,.05,.55,.95),visibility 0s linear .3s}
.has-dd:hover .dd,.has-dd:focus-within .dd,.has-dd.is-open .dd{visibility:visible;opacity:1;pointer-events:auto;transition-delay:0s}
.dd-in{width:100%;box-sizing:border-box;background:rgba(255,255,255,.99);border:1px solid rgba(23,32,51,.11);border-radius:0 0 14px 14px;box-shadow:0 24px 56px rgba(23,32,51,.12),0 2px 8px rgba(23,32,51,.05);padding:18px;display:grid;grid-template-columns:1fr;gap:14px;overflow:clip;clip-path:inset(0 0 100% round 0 0 14px 14px);max-height:0;transition:clip-path .2s cubic-bezier(.45,.05,.55,.95),max-height .2s cubic-bezier(.45,.05,.55,.95),opacity .3s cubic-bezier(.45,.05,.55,.95);opacity:0;backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}
.has-dd:hover .dd-in,.has-dd:focus-within .dd-in,.has-dd.is-open .dd-in{clip-path:inset(0 -60px -60px round 0 0 14px 14px);max-height:720px;opacity:1}
.dd-main{display:grid;grid-template-columns:1fr 1fr;gap:22px;min-width:0}
.dd-group{min-width:0}
.dd-group+.dd-group{border-left:1px solid var(--line);padding-left:22px}
.dd-group-label{position:relative;margin:0 10px 10px;padding:0 0 12px;font-family:var(--mono);font-size:10.5px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:#7b818a}
.dd-group-label::after{content:"";position:absolute;left:0;right:0;bottom:0;height:1px;background:#d9dee7}
.dd-group-label::before{content:"";position:absolute;left:0;right:0;bottom:0;height:1px;z-index:1;background:linear-gradient(90deg,var(--accent) 0%,#20bb6b 100%);transform:scaleX(0);transform-origin:left center;transition:transform .48s cubic-bezier(.16,1,.3,1)}
.dd-group:hover .dd-group-label::before,.dd-group:focus-within .dd-group-label::before{transform:scaleX(1)}
.dd-group-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px 6px}
.dd-group-solutions .dd-group-grid{grid-template-columns:1fr 1fr}
.dd-link{display:block;min-width:0;padding:9px 10px;border-radius:10px;outline:none}
.dd-link:hover,.dd-link:focus-visible{background:transparent;transform:none;outline:none}
.dd-t{display:inline-flex;align-items:center;font-size:13.5px;font-weight:600;line-height:1.28;color:var(--ink);transition:color .3s cubic-bezier(.25,1,.5,1)}
.dd-link:hover .dd-t,.dd-link:focus-visible .dd-t{color:var(--accent)}
.dd-d{display:block;font-size:12px;line-height:1.35;color:var(--ink2);margin-top:3px}
.dd-foot{display:flex;align-items:center;justify-content:space-between;gap:20px;border-top:1px solid var(--line);margin-top:2px;padding:13px 10px 2px}
.dd-foot::before{content:"Services, solutions and operating layers in one system";font-size:12.5px;color:var(--ink2)}
.dd-foot a{font-family:var(--mono);font-size:11.5px;letter-spacing:.055em;text-transform:uppercase;color:var(--accent);transition:color .3s cubic-bezier(.25,1,.5,1)}
.dd-foot a:hover{transform:none;color:#0755d8}
@media (prefers-reduced-motion:reduce){
  .dd,.dd-in,.ndl,.dd-link,.dd-foot a,.mega-overlay,.dd-group-label::before{transition:none!important}
  .dd{transform:translateX(-50%)!important}
  .dd-link:hover,.dd-link:focus-visible,.dd-foot a:hover{transform:none!important}
}
.hd-cta{display:flex;align-items:center;gap:18px}
.hd-contact{font-size:14.5px;font-weight:500;color:var(--ink2)}
.hd-contact:hover{color:var(--ink)}
.mega-overlay{position:fixed;inset:64px 0 0;z-index:98;background:rgba(15,23,42,.055);opacity:0;visibility:hidden;pointer-events:none;transition:opacity .3s cubic-bezier(.45,.05,.55,.95),visibility 0s linear .3s}
html.mega-open .mega-overlay{opacity:1;visibility:visible;transition-delay:0s}

/* burger + mobile nav */
.burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:40px;height:40px;background:none;border:1px solid var(--line2);border-radius:9px;cursor:pointer;padding:0 9px}
.burger span{display:block;height:1.6px;background:var(--ink);transition:.2s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(6.6px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-6.6px) rotate(-45deg)}
.mnav{display:none;border-top:1px solid var(--border-subtle);background:var(--surface);max-height:calc(100dvh - 64px);overflow-y:auto;padding:12px 0 28px}
.mnav-group{border-bottom:1px solid var(--line)}
.mnav-h{width:100%;text-align:left;background:none;border:0;font:600 16px/1 var(--disp);color:var(--ink);padding:16px 0;cursor:pointer;display:flex;justify-content:space-between;align-items:center}
.mnav-h::after{content:"+";font-family:var(--mono);color:var(--ink2);font-size:16px}
.mnav-h[aria-expanded="true"]::after{content:"–"}
.mnav-list{display:none;padding:0 0 14px}
.mnav-h[aria-expanded="true"]+.mnav-list{display:block}
.mnav-list a{display:block;padding:7px 0;font-size:14.5px;color:var(--ink2)}
.mnav-all{font-family:var(--mono);font-size:12px;text-transform:uppercase;letter-spacing:.06em;color:var(--accent)!important;margin-top:4px}
.mnav-link{display:block;padding:16px 0;font:600 16px/1 var(--disp);color:var(--ink);border-bottom:1px solid var(--line)}
.mnav-cta{margin-top:20px;width:100%;text-align:center}

/* ---------- buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 24px;border:1px solid var(--foreground);border-radius:100px;font-size:14.5px;font-weight:600;color:var(--foreground);background:transparent;cursor:pointer;transition:.15s;font-family:'Montserrat',sans-serif}
.btn:hover{background:var(--foreground);color:var(--background)}
.btn-primary{background:var(--primary);border-color:var(--primary);color:var(--primary-foreground)}
.btn-primary:hover{background:var(--primary-hover);border-color:var(--primary-hover);color:var(--primary-foreground)}
.btn-light{background:var(--band-ink);border-color:var(--band-ink);color:var(--band)}
.btn-light:hover{background:#fff;border-color:#fff;color:var(--band)}
.btn-ghost{border-color:rgba(247,248,250,.35);color:var(--band-ink)}
.btn-ghost:hover{background:rgba(247,248,250,.1);color:#fff}
.btn-s{padding:9px 18px;font-size:13.5px}
.cta-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:32px}

/* ---------- hero ---------- */
.hero{padding:96px 0 88px}
.crumb{font-family:var(--mono);font-size:12px;letter-spacing:.04em;color:var(--ink2);margin-bottom:26px;display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.crumb a{color:var(--ink2)}
.crumb a:hover{color:var(--accent)}
.crumb-sep{color:var(--line2)}
.hero h1{max-width:920px}
.lead{margin-top:26px;font-size:19.5px;line-height:1.6;color:var(--ink2);max-width:700px}
.hero-flow{margin-top:56px;padding-top:32px;border-top:1px solid var(--line)}


/* ---------- document workflow hero visual ---------- */
.doc-hero{overflow:hidden}
.doc-hero-grid{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(590px,.98fr);gap:32px;align-items:center}
.doc-hero .crumb,.doc-hero .eyebrow,.doc-hero h1,.doc-hero .lead,.doc-hero .cta-row{grid-column:1;min-width:0}
.doc-layer-visual{grid-column:2;grid-row:1 / span 5;min-height:560px;display:flex;align-items:center;justify-content:center;position:relative;overflow:visible}
.unsiloed-hero-object{display:block;width:min(853px,125%);max-width:none;aspect-ratio:682/700;border:0;overflow:visible;background:transparent;transform:translateX(50px);clip-path:inset(0 0 0 22px);transform-origin:center}

/* ---------- flow ---------- */
.flow{display:flex;flex-wrap:wrap;align-items:center;gap:10px 6px}
.chip{font-family:var(--mono);font-size:12.5px;letter-spacing:.03em;padding:9px 15px;border:1px solid var(--line2);border-radius:100px;background:var(--paper);white-space:nowrap;color:var(--ink)}
.flow-big .chip{font-size:13.5px;padding:12px 20px}
.arr{color:var(--accent);font-size:14px;padding:0 4px}
.flow-cap{margin-top:18px;font-size:13.5px;color:var(--ink2);max-width:640px}

/* ---------- cards ---------- */
.grid{display:grid;gap:14px}
.cols-2{grid-template-columns:repeat(2,1fr)}
.cols-3{grid-template-columns:repeat(3,1fr)}
.card{display:block;padding:28px 26px;border:1px solid var(--border);border-radius:var(--radius-card);background:var(--surface);color:var(--foreground);transition:border-color .15s,transform .15s}
.sec-alt .card{background:var(--surface)}
a.card:hover{border-color:var(--foreground);color:var(--foreground);transform:translateY(-2px)}
.card-big{grid-column:span 2;background:var(--band);border-color:var(--band);color:var(--band-ink)}
.card-big h3{font-size:24px}
.card-big p{color:var(--band-muted)}
a.card-big:hover{border-color:var(--band);color:var(--band-ink)}
.card-k{font-family:var(--mono);font-size:11.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--accent);margin-bottom:14px}
.card-big .card-k{color:var(--band-accent)}
.card h3{margin-bottom:8px}
.card p{font-size:14.5px;color:var(--muted-foreground)}
.card-more{display:inline-block;margin-top:14px;font-size:13.5px;font-weight:600;color:var(--accent)}
.mini-list{list-style:none;margin-top:12px}
.mini-list li{font-size:13.5px;color:var(--ink2);padding:5px 0 5px 18px;position:relative}
.mini-list li::before{content:"·";position:absolute;left:4px;color:var(--accent);font-weight:700}
.card-big .mini-list li{color:var(--band-muted)}

/* ---------- rows (definition map) ---------- */
.rows{border-top:1px solid var(--line2)}
.row{display:grid;grid-template-columns:280px 1fr;gap:24px;padding:20px 0;border-bottom:1px solid var(--line2)}
.row dt{font-family:var(--mono);font-size:13px;letter-spacing:.05em;text-transform:uppercase;color:var(--ink);padding-top:2px}
.row dd{color:var(--ink2);font-size:15.5px}

/* ---------- before / after ---------- */
.ba{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.ba-col{border:1px solid var(--line2);border-radius:16px;padding:28px}
.ba-before{background:var(--paper2)}
.ba-after{background:var(--band);border-color:var(--band);color:var(--band-ink)}
.ba-t{font-family:var(--mono);font-size:12px;letter-spacing:.12em;text-transform:uppercase;margin-bottom:18px;color:var(--ink2)}
.ba-after .ba-t{color:var(--band-accent)}
.ba ul{list-style:none}
.ba li{padding:8px 0 8px 26px;position:relative;font-size:15px;border-top:1px solid var(--line)}
.ba li:first-child{border-top:0}
.ba-before li::before{content:"—";position:absolute;left:0;color:#b4540a}
.ba-after li{border-top-color:rgba(244,242,236,.12);color:#d8d5cf}
.ba-after li::before{content:"+";position:absolute;left:2px;color:#6fe0c9;font-family:var(--mono)}

/* ---------- steps ---------- */
.steps{list-style:none;counter-reset:st;border-top:1px solid var(--line2)}
.steps li{counter-increment:st;display:grid;grid-template-columns:72px 1fr;gap:20px;padding:24px 0;border-bottom:1px solid var(--line2)}
.steps li::before{content:counter(st,decimal-leading-zero);font-family:var(--mono);font-size:14px;color:var(--accent);padding-top:3px}
.step-t{font-family:var(--disp);font-weight:650;font-size:18px;letter-spacing:-0.01em}
.steps p{margin-top:6px;color:var(--ink2);font-size:15px;max-width:640px}

/* ---------- prose ---------- */
.prose{max-width:760px}
.prose p{margin-bottom:18px;font-size:17px;color:var(--ink2)}
.prose p:last-child{margin-bottom:0}
.check-list{list-style:none;margin-top:8px}
.check-list li{padding:10px 0 10px 30px;position:relative;border-bottom:1px solid var(--line);font-size:15.5px;color:var(--ink2)}
.check-list li::before{content:"✓";position:absolute;left:2px;color:var(--ok);font-family:var(--mono);font-size:13px}
blockquote{margin-top:28px;padding:24px 28px;border-left:2px solid var(--accent);background:var(--paper2);border-radius:0 14px 14px 0;font-family:var(--disp);font-weight:600;font-size:19px;letter-spacing:-0.01em;line-height:1.45}

/* ---------- table ---------- */
.table-wrap{overflow-x:auto;border:1px solid var(--border);border-radius:var(--radius-card);background:var(--surface)}
table{width:100%;border-collapse:collapse;min-width:640px}
th{font-family:var(--mono);font-size:11.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--muted-foreground);text-align:left;padding:16px 20px;border-bottom:1px solid var(--border);background:var(--background-subtle)}
td{padding:16px 20px;border-bottom:1px solid var(--border-subtle);font-size:14.5px;color:var(--muted-foreground);vertical-align:top}
tr:last-child td{border-bottom:0}
.td-k{font-weight:600;color:var(--foreground)}

/* ---------- tiers ---------- */
.tiers{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px;align-items:stretch}
.tier{border:1px solid var(--line2);border-radius:16px;padding:28px 26px;background:var(--paper);display:flex;flex-direction:column;gap:12px}
.tier-featured{background:var(--band);border-color:var(--band);color:var(--band-ink)}
.tier-tag{font-family:var(--mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--accent)}
.tier-featured .tier-tag{color:var(--band-accent)}
.tier p{font-size:14.5px;color:var(--ink2)}
.tier-featured p{color:var(--band-muted)}
.tier ul{list-style:none;flex:1}
.tier li{font-size:13.5px;color:var(--ink2);padding:6px 0 6px 18px;position:relative;border-top:1px solid var(--line)}
.tier li::before{content:"·";position:absolute;left:4px;color:var(--accent);font-weight:700}
.tier-featured li{border-top-color:var(--band-line);color:var(--band-muted)}
.tier .btn{margin-top:10px}
.tier-featured .btn{border-color:rgba(247,248,250,.4);color:var(--band-ink)}
.tier-featured .btn:hover{background:var(--band-ink);color:var(--band)}
.tier-featured .btn-primary{background:var(--primary);border-color:var(--primary);color:var(--primary-foreground)}

/* ---------- placeholder visual ---------- */
.ph{border:1px dashed var(--line2);border-radius:16px;min-height:280px;display:flex;align-items:center;justify-content:center;background:repeating-linear-gradient(-45deg,transparent,transparent 14px,rgba(27,26,23,.025) 14px,rgba(27,26,23,.025) 15px)}
.ph-tall{min-height:420px}
.ph span{font-family:var(--mono);font-size:12.5px;letter-spacing:.08em;color:var(--ink2);text-transform:uppercase;padding:0 24px;text-align:center}

/* ---------- faq ---------- */
.faq{max-width:820px;border-top:1px solid var(--line2)}
.faq details{border-bottom:1px solid var(--line2)}
.faq summary{cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:24px;padding:22px 0;font-family:var(--disp);font-weight:650;font-size:17.5px;letter-spacing:-0.01em}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";font-family:var(--mono);color:var(--accent);font-size:18px;flex-shrink:0}
.faq details[open] summary::after{content:"–"}
.faq-a{padding:0 0 24px;max-width:700px}
.faq-a p{color:var(--ink2);font-size:15.5px}

/* ---------- links row ---------- */
.links-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:12px}
.link-card{display:flex;flex-direction:column;gap:4px;padding:20px 22px;border:1px solid var(--line2);border-radius:14px;color:var(--ink);position:relative;transition:border-color .15s}
.link-card:hover{border-color:var(--ink);color:var(--ink)}
.link-t{font-weight:600;font-size:15px;padding-right:24px}
.link-d{font-size:13px;color:var(--ink2)}
.link-arr{position:absolute;top:20px;right:20px;color:var(--accent);font-size:15px}

/* ---------- CTA band ---------- */
.band{background:var(--band);color:var(--band-ink);padding:96px 0}
.band h2{max-width:760px}
.band p{margin-top:18px;font-size:17.5px;color:var(--band-muted);max-width:640px}

/* ---------- form ---------- */
.form{max-width:820px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.field{display:flex;flex-direction:column;gap:7px}
.field span{font-family:var(--mono);font-size:11.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink2)}
.field input,.field textarea{font:400 15.5px/1.5 'Montserrat',sans-serif;color:var(--foreground);background:var(--surface);border:1px solid var(--input);border-radius:var(--radius-control);padding:13px 16px;outline:none;transition:border-color .15s,box-shadow .15s;resize:vertical}
.field input:focus,.field textarea:focus{border-color:var(--ring);box-shadow:none;}
.form-foot{display:flex;align-items:center;gap:20px;flex-wrap:wrap;margin-top:24px}
.form-note{font-size:12.5px;color:var(--ink2);max-width:380px}

/* ---------- footer ---------- */
.ft{border-top:1px solid var(--line);background:var(--paper2);padding:72px 0 0;margin-top:0}
.ft-top{display:grid;grid-template-columns:280px 1fr;gap:56px;padding-bottom:56px}
.ft-brand p{margin:16px 0 20px;font-size:14px;color:var(--ink2)}
.ft-cols{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.ft-t{font-family:var(--mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--ink2);margin-bottom:14px}
.ft-col a{display:block;font-size:13.5px;color:var(--ink2);padding:4px 0}
.ft-col a:hover{color:var(--accent)}
.ft-bot{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;padding:22px 0;border-top:1px solid var(--line2);font-size:12.5px;color:var(--ink2)}
.ft-mono{font-family:var(--mono);font-size:11px;letter-spacing:.06em}

/* ---------- responsive ---------- */
@media (max-width:1100px){
  .cols-3{grid-template-columns:repeat(2,1fr)}
  .ft-cols{grid-template-columns:repeat(2,1fr);gap:32px 24px}
  .ft-top{grid-template-columns:1fr;gap:40px}
}
@media (max-width:900px){
  .doc-hero-grid{grid-template-columns:minmax(0,1fr);gap:34px;min-width:0}
  .doc-hero .crumb,.doc-hero .eyebrow,.doc-hero h1,.doc-hero .lead,.doc-hero .cta-row,.doc-layer-visual{grid-column:1;grid-row:auto}
  .doc-layer-visual{min-height:330px;justify-content:center;overflow:hidden;width:100%}
  .unsiloed-hero-object{width:100%;max-width:100%;transform:none;transform-origin:center}
  .container{padding:0 20px}
  .nav,.hd-contact{display:none}
  .burger{display:flex}
  .mnav.open{display:block}
  .hero{padding:56px 0}
  .sec{padding:56px 0}
  .band{padding:64px 0}
  .cols-2,.cols-3{grid-template-columns:1fr}
  .card-big{grid-column:auto}
  .ba{grid-template-columns:1fr}
  .row{grid-template-columns:1fr;gap:6px;padding:16px 0}
  .steps li{grid-template-columns:48px 1fr;gap:12px;padding:18px 0}
  .form-grid{grid-template-columns:1fr}
  .lead{font-size:17px}
  .doc-hero h1{font-size:28px;line-height:1.08;max-width:calc(100vw - 40px);text-wrap:balance}
  .doc-hero .lead{font-size:16px;line-height:1.55;max-width:calc(100vw - 40px);overflow-wrap:break-word}
  .sec-head{margin-bottom:32px}
  .hero-flow{margin-top:36px;padding-top:24px}
  .tiers{grid-template-columns:1fr}
}

/* 3d stack diagram */
.stack3d-sec{background:var(--paper);padding-top:100px}
.stack3d-wrap{height:210vh;position:relative}
.stack3d-sticky{position:sticky;top:64px;height:75vh;overflow:hidden}
.stack3d-sticky canvas{display:block;width:100%;height:100%}
@media (max-width:960px){.stack3d-sec{display:none}}






/* FlowSignal — system-state motion (dbref:007): один активный сигнал проходит по цепочке чипов.
   Общий для SystemMap/WorkflowDiagram family. Static readable без JS; reduced-motion отключает. */
@keyframes flow-signal{
  0%,12%,100%{border-color:var(--line2);color:var(--foreground);background:var(--background);box-shadow:none;}
  4%,8%{border-color:var(--ring);color:var(--primary-hover);background:var(--surface);box-shadow:none;}
}
.flow .chip{animation:flow-signal 9s ease-in-out infinite}
.flow .chip:nth-child(3){animation-delay:.75s}
.flow .chip:nth-child(5){animation-delay:1.5s}
.flow .chip:nth-child(7){animation-delay:2.25s}
.flow .chip:nth-child(9){animation-delay:3s}
.flow .chip:nth-child(11){animation-delay:3.75s}
.flow .chip:nth-child(13){animation-delay:4.5s}
.flow .chip:nth-child(15){animation-delay:5.25s}
.flow .chip:nth-child(17){animation-delay:6s}
.flow .chip:nth-child(19){animation-delay:6.75s}
.flow .chip:nth-child(21){animation-delay:7.5s}
.flow .chip:nth-child(23){animation-delay:8.25s}
@media (prefers-reduced-motion:reduce){.flow .chip{animation:none}}

/* Card hover — dbref:009/028: light muted-gradient, направление внимания к углу действия. Tokens only. */
a.card{position:relative;overflow:hidden}
a.card::before{content:"";position:absolute;inset:0;opacity:0;pointer-events:none;transition:opacity .25s ease;background:linear-gradient(135deg,rgba(12,102,228,.06),rgba(12,102,228,0) 55%)}
a.card:hover::before{opacity:1}
a.card-big::before{background:linear-gradient(135deg,rgba(157,183,255,.10),rgba(157,183,255,0) 55%)}
.link-card{overflow:hidden}
.link-card::before{content:"";position:absolute;inset:0;opacity:0;pointer-events:none;transition:opacity .25s ease;background:linear-gradient(120deg,rgba(12,102,228,.05),rgba(12,102,228,0) 60%)}
.link-card:hover::before{opacity:1}
.link-arr{transition:transform .2s ease}
.link-card:hover .link-arr{transform:translateX(3px)}
@media (prefers-reduced-motion:reduce){a.card,.link-card{transition:none}}

/* ScenarioSelector — dbref:006: process tabs + animated workflow panel. Light AgencyAI interpretation; reference mechanics, not literal style. */
.scsel{display:grid;grid-template-columns:minmax(280px,340px) minmax(0,1fr);gap:38px;align-items:stretch}
.scsel-tabs{display:flex;flex-direction:column;border-left:1px solid var(--line2);background:linear-gradient(180deg,rgba(255,255,255,.36),rgba(255,255,255,0));padding:8px 0}
.scsel-tab{display:grid;grid-template-columns:42px 1fr;gap:2px 14px;padding:15px 16px 15px 18px;border-left:2px solid transparent;margin-left:-1.5px;color:var(--ink2);transition:background .18s,border-color .18s,color .18s,transform .18s}
.scsel-tab:hover{background:rgba(12,102,228,.035);color:var(--foreground);transform:translateX(2px)}
.scsel-tab.is-active{color:var(--foreground);border-left-color:var(--primary);background:linear-gradient(90deg,rgba(12,102,228,.075),rgba(12,102,228,0))}
.scsel-tab-k{grid-row:1/3;font-family:var(--mono);font-size:11px;letter-spacing:.10em;color:var(--accent);padding-top:2px}
.scsel-tab-t{font-family:var(--mono);font-size:12.5px;letter-spacing:.055em;text-transform:uppercase;color:inherit;line-height:1.35}
.scsel-tab-d{font-size:12.5px;line-height:1.35;color:var(--ink2);margin-top:4px;max-width:220px}
.scsel-panels{min-width:0}
.scsel-panel{display:none}
.scsel-panel.is-active{display:block;animation:scsel-in .28s ease}
@keyframes scsel-in{from{opacity:0;transform:translateY(7px)}to{opacity:1;transform:none}}
.sc-workflow{position:relative;min-height:430px;border:1px solid var(--line2);border-radius:24px;background:linear-gradient(145deg,#fffdf8 0%,#f3f1ea 100%);box-shadow:none;overflow:hidden;padding:28px}
.sc-workflow::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 78% 24%,rgba(12,102,228,.13),transparent 28%),linear-gradient(90deg,rgba(12,102,228,.045) 1px,transparent 1px),linear-gradient(rgba(12,102,228,.045) 1px,transparent 1px);background-size:auto,28px 28px,28px 28px;pointer-events:none;opacity:.9}
.sc-panel-head,.sc-panel-foot{position:relative;z-index:2;display:flex;align-items:flex-start;justify-content:space-between;gap:20px}
.sc-k{font-family:var(--mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--accent);margin-bottom:10px}
.sc-panel-head h3{font-size:24px;max-width:560px}
.sc-badge{font-family:var(--mono);font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:var(--ok);border:1px solid rgba(13,122,90,.24);background:rgba(13,122,90,.06);border-radius:100px;padding:8px 11px;white-space:nowrap}
.sc-canvas{position:relative;z-index:1;height:230px;margin:30px 0 22px;border:1px solid rgba(211,207,192,.72);border-radius:20px;background:rgba(250,249,245,.62);overflow:hidden}
.sc-grid{position:absolute;inset:0;background-image:radial-gradient(rgba(27,26,23,.13) 1px,transparent 1px);background-size:16px 16px;mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent)}
.sc-rail{position:absolute;left:7%;right:7%;top:50%;display:grid;grid-template-columns:repeat(4,1fr);gap:0;transform:translateY(-50%)}
.sc-rail i{height:1px;background:linear-gradient(90deg,rgba(12,102,228,.25),rgba(12,102,228,.75));position:relative}
.sc-rail i::after{content:"";position:absolute;right:-3px;top:-3px;width:7px;height:7px;border-radius:50%;background:var(--primary);box-shadow:none;}
.sc-signal{position:absolute;top:calc(50% - 5px);left:7%;width:10px;height:10px;border-radius:50%;background:var(--primary);box-shadow:none;animation:sc-signal-run 5.8s cubic-bezier(.35,0,.2,1) infinite}
@keyframes sc-signal-run{0%,10%{left:7%;opacity:.55}25%{left:28%}45%{left:49%}65%{left:70%}84%,100%{left:90%;opacity:1}}
.sc-node{position:absolute;z-index:2;min-width:112px;max-width:150px;padding:12px 13px;border:1px solid var(--line2);border-radius:14px;background:rgba(255,255,255,.9);box-shadow:none;font-family:var(--mono);font-size:11.5px;letter-spacing:.035em;color:var(--ink)}
.sc-node::before{content:"";display:inline-block;width:7px;height:7px;border-radius:50%;background:var(--accent);margin-right:8px;vertical-align:1px;opacity:.76}
.sc-node-1{left:5%;top:36%}.sc-node-2{left:24%;top:16%}.sc-node-3{left:43%;top:50%}.sc-node-4{left:62%;top:20%}.sc-node-5{right:5%;top:42%}
.scsel-d{position:relative;z-index:2;margin:0 0 22px;font-size:15.5px;line-height:1.65;color:var(--ink2);max-width:700px}
.sc-panel-foot{align-items:center;border-top:1px solid rgba(211,207,192,.72);padding-top:18px}
.sc-panel-foot span{font-family:var(--mono);font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--ink2)}
@media (max-width:900px){
  .scsel{grid-template-columns:1fr;gap:22px}
  .scsel-tabs{flex-direction:row;overflow-x:auto;border-left:0;border-bottom:1px solid var(--line2);padding:0 0 8px;scroll-snap-type:x proximity}
  .scsel-tab{min-width:235px;scroll-snap-align:start;border-left:0;border-bottom:2px solid transparent;margin-left:0;padding:12px 12px;grid-template-columns:34px 1fr}
  .scsel-tab.is-active{border-bottom-color:var(--primary);background:rgba(12,102,228,.06)}
  .sc-workflow{min-height:410px;padding:22px;border-radius:20px}
  .sc-canvas{height:230px;overflow-x:auto}
  .sc-panel-head,.sc-panel-foot{flex-direction:column;align-items:flex-start}
}
@media (max-width:560px){
  .sc-node{min-width:96px;max-width:112px;font-size:10.5px;padding:10px 10px}
  .sc-node-1{left:4%;top:38%}.sc-node-2{left:20%;top:14%}.sc-node-3{left:38%;top:54%}.sc-node-4{left:57%;top:18%}.sc-node-5{right:3%;top:43%}
  .sc-panel-head h3{font-size:21px}
}
@media (prefers-reduced-motion:reduce){.scsel-panel.is-active,.sc-signal{animation:none}}

/* Labs update feed — public-safe interaction timeline. Structure from the reference, rendered in the light AgencyAI palette. */
.lab-updates{padding:6px 0 76px;background:var(--paper);border-bottom:1px solid var(--line)}
.lab-updates-shell{position:relative;max-width:980px;margin:0 auto;border-top:1px solid var(--line2);border-bottom:1px solid var(--line2);padding:34px 0 30px;background:transparent;color:var(--ink);box-shadow:none;overflow:visible}
.lab-updates-head{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;margin-bottom:34px;padding-left:78px}
.lab-updates-k{font-family:var(--mono);font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--accent);margin-bottom:10px}
.lab-updates-head h2{font-size:clamp(24px,3vw,34px);letter-spacing:-.04em;color:var(--ink)}
.lab-updates-status{font-family:var(--mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--ink2);border:1px solid var(--line2);border-radius:100px;padding:8px 11px;background:rgba(255,255,255,.55);white-space:nowrap}
.lab-feed{position:relative;display:grid;gap:30px;max-width:860px;margin:0 auto;padding-left:92px}
.lab-feed::before{content:"";position:absolute;left:18px;top:-66px;bottom:6px;width:1px;background:linear-gradient(180deg,transparent,var(--line2) 9%,var(--line2) 92%,transparent)}
.lab-feed-item{position:relative;display:grid;grid-template-columns:minmax(205px,250px) minmax(0,1fr);gap:26px;align-items:start}
.lab-feed-icon{position:absolute;left:-88px;top:0;width:32px;height:32px;display:grid;place-items:center;border:1px solid var(--border);border-radius:10px;background:var(--surface);color:var(--primary);box-shadow:none;}
.lab-feed-icon svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.lab-feed-meta{font-family:var(--mono);font-size:12px;letter-spacing:.045em;color:var(--ink2);display:grid;grid-template-columns:64px 1fr;gap:5px 10px;padding-top:1px;line-height:1.35}
.lab-feed-meta .lab-feed-step{grid-row:1/3;color:var(--accent);text-transform:uppercase;letter-spacing:.10em}
.lab-feed-meta span:nth-child(2){color:var(--ink);font-weight:500;text-transform:uppercase;letter-spacing:.10em}
.lab-feed-meta span:nth-child(3){grid-column:2;color:var(--ink2)}
.lab-feed-meta time{grid-column:2;color:var(--ink3);font-size:10.5px;letter-spacing:.06em;text-transform:uppercase}
.lab-feed-card{border:1px solid var(--line2);border-radius:16px;background:rgba(255,255,255,.68);box-shadow:none;padding:22px 24px}
.lab-feed-item.is-featured .lab-feed-card{background:#fff;box-shadow:none;}
.lab-feed-card h3{color:var(--ink);font-size:20px;margin-bottom:11px;letter-spacing:-.018em}
.lab-feed-card p{color:var(--ink2);font-size:15.5px;line-height:1.62;max-width:640px}
@media (max-width:900px){
  .lab-updates{padding:0 0 56px}
  .lab-updates-shell{padding:28px 0 24px}
  .lab-updates-head{padding-left:54px;flex-direction:column;margin-bottom:28px}
  .lab-feed{padding-left:54px;margin:0;gap:24px}
  .lab-feed::before{left:10px;top:-54px}
  .lab-feed-item{grid-template-columns:1fr;gap:12px}
  .lab-feed-icon{left:-58px}
  .lab-feed-card{padding:20px}
}
@media (max-width:560px){
  .lab-updates-head,.lab-feed{padding-left:40px}
  .lab-feed-icon{left:-44px}
  .lab-feed-meta{grid-template-columns:1fr;font-size:11px}
  .lab-feed-meta .lab-feed-step{grid-row:auto}
  .lab-feed-meta span:nth-child(3),.lab-feed-meta time{grid-column:1}
}

/* Founder block — trust-паттерн «кто ведёт проект» */
.founder{display:grid;grid-template-columns:96px 1fr;gap:28px;align-items:start;max-width:760px}
.founder-mark{width:96px;height:96px;border-radius:50%;background:var(--band);color:var(--band-ink);display:flex;align-items:center;justify-content:center;font-family:var(--disp);font-weight:650;font-size:34px}
.founder-body p{font-size:16px;color:var(--ink2);margin-bottom:14px}
@media (max-width:900px){.founder{grid-template-columns:64px 1fr;gap:16px}.founder-mark{width:64px;height:64px;font-size:24px}}

/* ---------- color-role utilities: Skeleton / Tree / Sidebar ---------- */
.ui-skeleton,.skeleton{display:block;min-height:1em;border-radius:var(--radius-control);background:linear-gradient(90deg,var(--skeleton) 25%,var(--skeleton-shimmer) 37%,var(--skeleton) 63%);background-size:400% 100%;animation:skeleton-shimmer 1.4s ease infinite}
.ui-skeleton-line{height:12px;border-radius:999px}
.ui-skeleton-card{min-height:120px;border:1px solid var(--border-subtle);border-radius:var(--radius-card)}
@keyframes skeleton-shimmer{0%{background-position:100% 0}100%{background-position:0 0}}
@media (prefers-reduced-motion:reduce){.ui-skeleton,.skeleton{animation:none}}
.ui-tree{border:1px solid var(--border);border-radius:var(--radius-card);background:var(--surface);padding:8px;color:var(--foreground)}
.ui-tree-node{display:flex;align-items:center;gap:8px;width:100%;padding:8px 10px;border-radius:9px;color:var(--muted-foreground)}
.ui-tree-node:hover{background:var(--tree-hover);color:var(--foreground)}
.ui-tree-node[aria-selected="true"],.ui-tree-node.is-selected{background:var(--tree-selected);color:var(--tree-selected-text)}
.ui-tree-node:focus-visible{outline:2px solid var(--ring);outline-offset:2px}
.ui-sidebar{background:var(--surface);border:1px solid var(--border-subtle);border-radius:var(--radius-card);color:var(--foreground)}
.ui-sidebar .is-active{background:var(--accent-soft);color:var(--accent-foreground)}


/* AISystems Signal Field — editable WebGL data-to-decision motion. */
.decision-hero{position:relative;isolation:isolate;overflow:hidden;background:#1c1c1c;color:#f7f8fa;padding:0;min-height:760px;display:flex;align-items:center}
.decision-hero::before,.decision-hero::after{content:none}
.decision-hero-center{position:relative;z-index:2;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;min-height:760px;padding-top:112px;padding-bottom:108px}
.decision-hero .crumb{position:absolute;top:92px;left:20px;right:20px;display:flex;justify-content:center;gap:10px;color:rgba(247,248,250,.48)}
.decision-hero .crumb a{color:rgba(247,248,250,.54)}
.decision-hero .crumb a:hover{color:#fff}
.decision-hero .crumb-sep{color:rgba(247,248,250,.22)}
.decision-hero .eyebrow.accent{color:#ff6300;margin-bottom:18px}
.decision-hero h1{max-width:920px;margin:0 auto;color:#fff;font-size:clamp(44px,5.2vw,76px);line-height:.96;letter-spacing:-.055em;text-wrap:balance}
.decision-hero .lead{max-width:680px;margin:24px auto 0;color:rgba(247,248,250,.66);font-size:clamp(17px,1.35vw,21px);line-height:1.48;text-wrap:balance}
.decision-hero .cta-row{justify-content:center;margin-top:42px}
.decision-hero .btn-primary{background:#f7f8fa;border-color:#f7f8fa;color:#171a1f;box-shadow:none}
.decision-hero .btn-primary:hover{background:#fff;border-color:#fff;color:#171a1f}
.decision-hero-proof{display:flex;justify-content:center;flex-wrap:wrap;gap:8px;margin:28px auto 0;max-width:720px}
.decision-hero-proof span{font-family:var(--mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:rgba(247,248,250,.56);border:1px solid rgba(247,248,250,.12);border-radius:100px;padding:7px 10px;background:rgba(247,248,250,.035);backdrop-filter:blur(8px)}
.decision-flow-scene{position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none;background:#1c1c1c}
.decision-flow-scene::before,.decision-flow-scene::after{content:none}
.aisystems-signal-field{position:absolute;inset:0;z-index:0;overflow:hidden;background:#1c1c1c;opacity:0;transition:opacity 1.4s cubic-bezier(.4,0,.2,1);contain:layout paint style;will-change:opacity}
.aisystems-signal-field.is-ready,.aisystems-signal-field.is-fallback{opacity:1}
.aisystems-signal-canvas{display:block;width:100%;height:100%;pointer-events:none}
.decision-hero .crumb,.decision-hero .eyebrow.accent,.decision-hero h1,.decision-hero .lead,.decision-hero .cta-row,.decision-hero-proof{animation:aisystems-content-enter .9s cubic-bezier(.16,1,.3,1) both}
.decision-hero .crumb{animation-delay:.1s}
.decision-hero .eyebrow.accent{animation-delay:.2s}
.decision-hero h1{animation-delay:.3s}
.decision-hero .lead{animation-delay:.5s}
.decision-hero .cta-row{animation-delay:.7s}
.decision-hero-proof{animation-delay:.85s}
@keyframes aisystems-content-enter{from{opacity:.001;transform:translateY(150px)}to{opacity:1;transform:translateY(0)}}
@media (max-width:900px){
  .decision-hero{min-height:auto}
  .decision-hero-center{min-height:680px;padding-top:96px;padding-bottom:76px}
  .decision-hero .crumb{top:60px}
  .decision-hero h1{font-size:clamp(38px,9vw,62px);max-width:720px}
  .decision-hero .lead{max-width:620px}
  .aisystems-signal-field{display:none}
}
@media (max-width:560px){
  .decision-hero-center{min-height:620px;padding-top:78px;padding-bottom:58px}
  .decision-hero .crumb{position:relative;top:auto;left:auto;right:auto;margin-bottom:28px;flex-wrap:wrap}
  .decision-hero h1{font-size:clamp(34px,11vw,48px);line-height:.99;letter-spacing:-.045em}
  .decision-hero .lead{font-size:16px;line-height:1.52}
  .decision-hero .cta-row{margin-top:30px}
  .decision-hero-proof{gap:6px;margin-top:24px}
  .decision-hero-proof span{font-size:10px;padding:6px 8px}
}
@media (prefers-reduced-motion:reduce){
  .aisystems-signal-field{transition:none}
  .decision-hero .crumb,.decision-hero .eyebrow.accent,.decision-hero h1,.decision-hero .lead,.decision-hero .cta-row,.decision-hero-proof{animation:none}
}

.founder-points{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}.founder-points span{font-family:var(--mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--accent);border:1px solid var(--border);border-radius:100px;padding:7px 9px;background:var(--surface)}

/* SmartIcon — structure-aware SVG motion without icon-specific animation rules. */
.state-icon-flow .chip{display:inline-flex;align-items:center;gap:8px}
.state-icon{width:15px;height:15px;flex:0 0 15px;color:var(--accent);overflow:visible}
.state-icon-flow .chip:nth-of-type(2n) .state-icon{color:var(--ink2)}
.state-icon [data-smart-part]{transform-box:fill-box;transform-origin:center;will-change:transform,stroke-dashoffset,opacity}
@media (prefers-reduced-motion:reduce){.state-icon [data-smart-part]{will-change:auto}}



/* ---------- home page rhythm ---------- */
.home-page main{background:var(--background)}
.home-hero{padding-bottom:64px}
.home-hero .lead{max-width:760px}
.home-hero .hero-flow{margin-top:48px}
.home-summary{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:var(--background-subtle)}
.home-summary-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr))}
.home-summary-grid>div{padding:28px 32px;border-left:1px solid var(--line)}
.home-summary-grid>div:first-child{border-left:0;padding-left:0}
.home-summary-grid>div:last-child{padding-right:0}
.home-summary span{display:block;margin-bottom:10px;font:500 11px/1 var(--mono);letter-spacing:.1em;color:var(--accent)}
.home-summary strong{display:block;font:650 17px/1.25 var(--disp);letter-spacing:-.01em}
.home-summary p{margin-top:8px;max-width:310px;font-size:13.5px;line-height:1.55;color:var(--muted-foreground)}
.home-section{padding:76px 0}
.home-section .sec-head{display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,.62fr);column-gap:56px;align-items:end;max-width:none;margin-bottom:38px}
.home-section .sec-head .eyebrow,.home-section .sec-head h2{grid-column:1}
.home-section .sec-head .sec-lead{grid-column:2;grid-row:1 / span 2;margin:0;align-self:end;font-size:16px}
.home-section .card{min-height:210px;display:flex;flex-direction:column}
.home-section .card .card-more{margin-top:auto;padding-top:18px}
.home-services .card-big{min-height:300px}
.home-position .prose,.home-proof .prose,.home-control .prose{max-width:860px}
.home-position blockquote{margin-top:30px}
.home-proof .container,.home-control .container{display:grid;grid-template-columns:minmax(260px,.72fr) minmax(0,1.28fr);gap:72px;align-items:start}
.home-proof .sec-head,.home-control .sec-head{display:block;margin:0}
.home-proof .prose,.home-control .prose{padding-top:38px}
.home-faq .faq{max-width:920px}
@media (max-width:900px){
  .home-summary-grid{grid-template-columns:1fr}
  .home-summary-grid>div{padding:22px 0;border-left:0;border-top:1px solid var(--line)}
  .home-summary-grid>div:first-child{border-top:0}
  .home-summary p{max-width:560px}
  .home-section{padding:62px 0}
  .home-section .sec-head{display:block;margin-bottom:30px}
  .home-section .sec-head .sec-lead{margin-top:14px}
  .home-proof .container,.home-control .container{display:block}
  .home-proof .sec-head,.home-control .sec-head{margin-bottom:28px}
  .home-proof .prose,.home-control .prose{padding-top:0}
}
@media (max-width:560px){
  .home-hero{padding-top:64px;padding-bottom:48px}
  .home-hero .hero-flow{margin-top:38px}
  .home-section{padding:52px 0}
  .home-section .card{min-height:0}
  .home-services .card-big{min-height:0}
}


/* ---------- premium home visual layer ---------- */
.home-page{--home-glow:rgba(59,111,255,.16);--home-ink:#0f1726;--home-panel:#111a2b}
.home-page main{overflow:hidden}
.home-hero{position:relative;padding-top:92px;background:
  radial-gradient(circle at 84% 12%,rgba(84,126,255,.18),transparent 28%),
  radial-gradient(circle at 14% 0%,rgba(255,255,255,.82),transparent 30%),
  linear-gradient(180deg,#f7f8fb 0%,#f2f4f8 64%,#eef1f6 100%)}
.home-hero::before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.44;background-image:linear-gradient(rgba(23,32,51,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(23,32,51,.045) 1px,transparent 1px);background-size:34px 34px;mask-image:linear-gradient(to bottom,#000 0%,rgba(0,0,0,.75) 58%,transparent 100%)}
.home-hero .container{position:relative;z-index:1}
.home-hero .eyebrow{display:inline-flex;align-items:center;gap:8px;padding:7px 11px;border:1px solid rgba(12,102,228,.16);border-radius:999px;background:rgba(255,255,255,.65);backdrop-filter:blur(12px);box-shadow:none;}
.home-hero h1{max-width:1050px;font-size:clamp(48px,6.6vw,92px);line-height:.97;letter-spacing:-.065em;color:var(--home-ink);text-wrap:balance}
.home-hero .lead{font-size:18px;line-height:1.7;color:#526071}
.home-hero .cta-row{margin-top:30px}
.home-hero .btn{min-height:48px;padding:13px 20px;border-radius:12px}
.home-hero .btn-primary{box-shadow:none;}
.home-signal{margin-top:54px;border:1px solid rgba(255,255,255,.18);border-radius:24px;background:
  radial-gradient(circle at 82% 12%,rgba(83,122,255,.24),transparent 34%),
  linear-gradient(135deg,#101827 0%,#16223a 100%);color:#f7f8fa;box-shadow:none;overflow:hidden}
.home-signal-head{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;border-bottom:1px solid rgba(255,255,255,.09);font:500 11px/1 var(--mono);letter-spacing:.11em;text-transform:uppercase;color:#aab7c9}
.home-live{display:inline-flex;align-items:center;gap:8px;color:#cfe0ff}
.home-live i{width:7px;height:7px;border-radius:50%;background:#69d4b8;box-shadow:none;}
.home-signal-grid{display:grid;grid-template-columns:minmax(0,2fr) repeat(3,minmax(130px,.62fr))}
.home-signal-primary,.home-metric{padding:28px;border-right:1px solid rgba(255,255,255,.09)}
.home-signal-grid>div:last-child{border-right:0}
.home-signal-primary{min-height:210px;display:flex;flex-direction:column;justify-content:flex-end}
.home-signal-k{margin-bottom:auto;font:500 11px/1 var(--mono);letter-spacing:.1em;text-transform:uppercase;color:#8eaefc}
.home-signal-primary strong{font:650 clamp(24px,3.2vw,42px)/1.05 var(--disp);letter-spacing:-.045em;max-width:650px}
.home-signal-primary p{margin-top:14px;max-width:620px;font-size:14px;line-height:1.6;color:#aab7c9}
.home-metric{display:flex;flex-direction:column;justify-content:space-between;min-height:210px;background:linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,0))}
.home-metric span{font:500 11px/1 var(--mono);letter-spacing:.1em;color:#7fa4ff}
.home-metric strong{font:650 18px/1.15 var(--disp);letter-spacing:-.02em}
.home-metric small{font-size:12px;line-height:1.45;color:#8f9db1}
.home-summary{background:#f7f8fb}
.home-summary-grid>div{position:relative}
.home-summary-grid>div::after{content:"";position:absolute;left:32px;right:32px;bottom:0;height:2px;transform:scaleX(0);transform-origin:left;background:linear-gradient(90deg,var(--primary),transparent);transition:transform .25s ease}
.home-summary-grid>div:hover::after{transform:scaleX(1)}
.home-section{position:relative}
.home-section:nth-of-type(even):not(.faq-section){background:linear-gradient(180deg,rgba(247,248,251,.72),rgba(255,255,255,.72))}
.home-section .sec-head h2{font-size:clamp(34px,4.4vw,58px);line-height:1.02;letter-spacing:-.055em;text-wrap:balance}
.home-section .eyebrow{letter-spacing:.12em}
.home-section .num{display:inline-grid;place-items:center;width:26px;height:26px;margin-right:10px;border:1px solid rgba(12,102,228,.18);border-radius:8px;background:rgba(12,102,228,.055)}
.home-section .card{border-color:rgba(23,32,51,.12);border-radius:20px;background:rgba(255,255,255,.78);box-shadow:none;backdrop-filter:blur(8px)}
.home-section a.card:hover{transform:translateY(-5px);box-shadow:none;border-color:rgba(12,102,228,.28)}
.home-section .card-big{background:linear-gradient(145deg,#111a2b,#1a2944);border-color:transparent;box-shadow:none;}
.home-system .rows{border:1px solid rgba(23,32,51,.1);border-radius:22px;overflow:hidden;background:rgba(255,255,255,.72);box-shadow:none;}
.home-system .row{padding:24px 26px}
.home-system .row:last-child{border-bottom:0}
.home-position blockquote{border-left:0;padding:28px 30px;border-radius:20px;background:linear-gradient(135deg,#111a2b,#1b2d4d);color:#f7f8fa;box-shadow:none;}
.home-control{background:
  radial-gradient(circle at 82% 20%,rgba(67,113,255,.09),transparent 28%),
  linear-gradient(180deg,#f7f8fb,#fff)}
.home-faq .faq{border:1px solid rgba(23,32,51,.1);border-radius:20px;overflow:hidden;box-shadow:none;}
.home-faq details{padding-left:22px;padding-right:22px}
.home-page .band{position:relative;background:
  radial-gradient(circle at 80% 20%,rgba(99,134,255,.28),transparent 30%),
  linear-gradient(135deg,#101827,#172743);overflow:hidden}
.home-page .band::after{content:"";position:absolute;right:-120px;top:-160px;width:460px;height:460px;border:1px solid rgba(255,255,255,.12);border-radius:50%;box-shadow:none;}
.home-page .band .container{position:relative;z-index:1}
@media (max-width:900px){
  .home-hero{padding-top:70px}
  .home-hero h1{font-size:clamp(46px,10vw,72px)}
  .home-signal-grid{grid-template-columns:1fr 1fr}
  .home-signal-primary{grid-column:1/-1;border-right:0;border-bottom:1px solid rgba(255,255,255,.09)}
  .home-metric{min-height:150px}
  .home-signal-grid .home-metric:nth-child(3){border-right:0}
  .home-signal-grid .home-metric:last-child{grid-column:1/-1;border-top:1px solid rgba(255,255,255,.09)}
}
@media (max-width:560px){
  .home-hero{padding-top:54px}
  .home-hero h1{font-size:clamp(42px,13vw,58px);letter-spacing:-.06em}
  .home-hero .lead{font-size:16px}
  .home-signal{margin-top:40px;border-radius:18px}
  .home-signal-head{padding:14px 16px}
  .home-signal-grid{grid-template-columns:1fr}
  .home-signal-primary,.home-metric{padding:22px;border-right:0}
  .home-signal-primary{min-height:240px}
  .home-metric{min-height:120px;border-top:1px solid rgba(255,255,255,.09)}
  .home-signal-grid .home-metric:last-child{grid-column:auto}
  .home-section .sec-head h2{font-size:36px}
  .home-system .row{padding:20px}
}
@media (prefers-reduced-motion:reduce){.home-summary-grid>div::after{transition:none}.home-section a.card:hover{transform:none}}

/* ---------- reusable editorial bento ---------- */
.system-bento{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));grid-auto-rows:minmax(210px,auto);gap:14px}
.system-bento-card{position:relative;display:flex;flex-direction:column;min-width:0;padding:26px;border:1px solid rgba(23,32,51,.11);border-radius:28px;background:#f7f8fa;color:var(--foreground);overflow:hidden;box-shadow:none;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.system-bento-card:hover{color:var(--foreground);transform:translateY(-4px);border-color:rgba(12,102,228,.24);box-shadow:none;}
.system-bento-card::after{content:"";position:absolute;right:-70px;bottom:-90px;width:220px;height:220px;border-radius:50%;background:radial-gradient(circle,rgba(52,104,255,.12),rgba(52,104,255,0) 68%);pointer-events:none}
.system-bento-top{position:relative;z-index:1;display:flex;align-items:flex-start;justify-content:space-between;gap:18px}
.system-bento-card .card-k{margin:0;color:#1768ef}
.system-bento-index{display:grid;place-items:center;width:34px;height:34px;flex:0 0 34px;border:1px solid rgba(23,32,51,.1);border-radius:12px;background:rgba(255,255,255,.6);font:500 10px/1 var(--mono);letter-spacing:.08em;color:#687386}
.system-bento-body{position:relative;z-index:1;margin-top:46px}
.system-bento-body h3{margin:0;font:650 clamp(25px,2.45vw,38px)/.98 var(--disp);letter-spacing:-.052em;text-wrap:balance}
.system-bento-body p{max-width:520px;margin-top:16px;font-size:14.5px;line-height:1.6;color:#687386}
.system-bento-link{position:relative;z-index:1;display:flex;justify-content:flex-start;align-items:center;gap:12px;margin-top:auto;padding-top:28px;font-size:13px;font-weight:650;color:#0c66e4}
.system-bento-link>span{display:grid;place-items:center;width:32px;height:32px;border-radius:50%;background:rgba(12,102,228,.08);font-size:15px;transition:transform .2s ease,background .2s ease}
.system-bento-card:hover .system-bento-link>span{transform:rotate(45deg);background:rgba(12,102,228,.14)}
.system-bento-core{grid-column:1 / 9;grid-row:span 2;min-height:470px;padding:32px;background:linear-gradient(145deg,#111a2b 0%,#192844 100%);color:#f8faff;border-color:transparent;box-shadow:none;}
.system-bento-core:hover{color:#f8faff;border-color:transparent;box-shadow:none;}
.system-bento-core::before{content:"";position:absolute;inset:0;background:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:36px 36px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.8),transparent 78%)}
.system-bento-core::after{right:-110px;bottom:-150px;width:430px;height:430px;background:radial-gradient(circle,rgba(70,116,255,.32),rgba(70,116,255,0) 68%)}
.system-bento-core .card-k{color:#8eadff}.system-bento-core .system-bento-index{border-color:rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:#9aa9bd}
.system-bento-core .system-bento-body{margin-top:62px}.system-bento-core .system-bento-body h3{font-size:clamp(44px,5.4vw,76px);color:#f8faff}.system-bento-core .system-bento-body p{font-size:16px;color:#aab7c9}
.system-bento-core .system-bento-link{color:#9db8ff}.system-bento-core .system-bento-link>span{background:rgba(255,255,255,.09)}
.system-bento-flow{position:relative;z-index:1;display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-top:34px}
.system-bento-flow span{padding:8px 10px;border:1px solid rgba(255,255,255,.12);border-radius:999px;background:rgba(255,255,255,.055);font:500 10px/1 var(--mono);letter-spacing:.06em;text-transform:uppercase;color:#c3cee0}.system-bento-flow i{font-style:normal;color:#668ce8}
.system-bento-control{grid-column:9 / -1;grid-row:span 2;min-height:470px;background:linear-gradient(180deg,#f4f4f5,#eceef2)}
.system-bento-control .system-bento-body{margin-top:52px}.system-bento-control .system-bento-body h3{font-size:clamp(29px,3vw,42px)}
.system-bento-metric{position:relative;z-index:1;display:flex;align-items:flex-end;gap:14px;margin-top:auto;padding-top:36px}.system-bento-metric strong{font:650 clamp(46px,5vw,70px)/.8 var(--disp);letter-spacing:-.06em}.system-bento-metric span{font-size:12px;line-height:1.35;color:#687386}
.system-bento-web{grid-column:span 4;min-height:300px}.system-bento-trust{grid-column:span 4;min-height:300px;background:#eef1f7}.system-bento-extensions{grid-column:span 4;min-height:300px;background:linear-gradient(145deg,#f1f2f4,#e8ebef)}
.system-bento-web .system-bento-body,.system-bento-trust .system-bento-body,.system-bento-extensions .system-bento-body{margin-top:34px}
.system-bento-web .system-bento-body h3,.system-bento-trust .system-bento-body h3,.system-bento-extensions .system-bento-body h3{font-size:clamp(24px,2.1vw,31px)}
.system-bento-tags{position:relative;z-index:1;display:flex;flex-wrap:wrap;gap:6px;margin-top:20px}.system-bento-tags span{padding:6px 9px;border:1px solid rgba(23,32,51,.1);border-radius:999px;background:rgba(255,255,255,.55);font-size:10.5px;color:#6d7583}
.system-bento-visual{position:relative;z-index:1;margin:20px -26px -26px}.system-bento-visual img{display:block;width:100%;height:auto}
@media (max-width:760px){.system-bento-visual{margin:18px -24px -24px}}
@media (max-width:1050px){.system-bento-core{grid-column:span 7}.system-bento-control{grid-column:span 5}.system-bento-web,.system-bento-trust{grid-column:span 6}.system-bento-extensions{grid-column:1/-1}}
@media (max-width:760px){.system-bento{grid-template-columns:1fr;grid-auto-rows:auto}.system-bento-card,.system-bento-core,.system-bento-control,.system-bento-web,.system-bento-trust,.system-bento-extensions{grid-column:auto;grid-row:auto;min-height:0;padding:24px;border-radius:22px}.system-bento-core{min-height:440px}.system-bento-control{min-height:390px}.system-bento-body,.system-bento-core .system-bento-body,.system-bento-control .system-bento-body,.system-bento-web .system-bento-body,.system-bento-trust .system-bento-body,.system-bento-extensions .system-bento-body{margin-top:36px}.system-bento-core .system-bento-body h3{font-size:clamp(42px,13vw,62px)}.system-bento-body h3,.system-bento-control .system-bento-body h3{font-size:clamp(30px,9vw,42px)}.system-bento-flow{gap:6px}.system-bento-flow i{display:none}.system-bento-link{padding-top:24px}}
@media (prefers-reduced-motion:reduce){.system-bento-card,.system-bento-link>span{transition:none}.system-bento-card:hover{transform:none}.system-bento-card:hover .system-bento-link>span{transform:none}}

/* ---------- homepage company-first narrative ---------- */
.home-hero-company{padding-top:104px}
.home-hero-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);gap:54px;align-items:end}
.home-hero-company h1{max-width:980px;font-size:clamp(52px,6.5vw,92px);line-height:.94;letter-spacing:-.062em}
.home-hero-company .lead{max-width:780px;font-size:18px}
.home-hero-trust{margin-top:26px;font-size:12.5px;color:var(--muted-foreground)}
.home-hero-panel{padding:24px;border:1px solid var(--border);border-radius:28px;background:linear-gradient(160deg,#f6f7f8,#eceff3);box-shadow:none;}
.home-hero-panel-head,.home-hero-compare{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.home-hero-panel-head{padding-bottom:14px;border-bottom:1px solid var(--line);font:500 10px/1 var(--mono);letter-spacing:.1em;text-transform:uppercase;color:#768196}
.home-hero-compare{padding:17px 0;border-bottom:1px solid var(--line)}.home-hero-compare:last-child{border-bottom:0;padding-bottom:0}
.home-hero-compare p,.home-hero-compare strong{margin:0;font-size:13px;line-height:1.35}.home-hero-compare p{color:#7a8495}.home-hero-compare strong{font-weight:600;color:#172033}
.visual-placeholder{position:relative;z-index:1;display:grid;place-items:center;min-height:150px;margin:24px -26px 0;border-top:1px dashed rgba(23,32,51,.14);background:linear-gradient(135deg,rgba(255,255,255,.46),rgba(215,222,233,.56));text-align:center;color:#69758a}
.visual-placeholder span{font:500 10px/1 var(--mono);letter-spacing:.12em;text-transform:uppercase}.visual-placeholder small{display:block;margin-top:8px;font-size:11px}.visual-placeholder-light{min-height:116px;margin-bottom:-26px}
.problem-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.problem-card{display:block;min-height:250px;padding:26px;border:1px solid var(--border);border-radius:24px;background:var(--surface);color:var(--foreground);transition:transform .2s,border-color .2s,box-shadow .2s}.problem-card:hover{transform:translateY(-4px);border-color:rgba(12,102,228,.3);box-shadow:none;color:var(--foreground)}
.problem-card>span,.why-list span{font:500 10px/1 var(--mono);letter-spacing:.1em;color:var(--accent)}
.problem-card h3{margin:54px 0 12px;font-size:24px;line-height:1.02;letter-spacing:-.035em}.problem-card p{font-size:14px;color:var(--muted-foreground)}
.process-method-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.94fr) minmax(0,1fr);grid-template-rows:repeat(2,minmax(230px,1fr));gap:14px;align-items:stretch}
.process-method-card{display:flex;min-width:0;min-height:250px;flex-direction:column;padding:28px;border:1px solid var(--border);border-radius:24px;background:var(--surface);outline:0;transition:transform .24s ease,border-color .24s ease,background-color .24s ease}
.process-method-card-diagnostic{grid-column:1;grid-row:1}.process-method-card-architecture{grid-column:1;grid-row:2}.process-method-card-launch{grid-column:3;grid-row:1}.process-method-card-growth{grid-column:3;grid-row:2}
.process-method-card:hover,.process-method-card:focus-visible{transform:translateY(-2px);border-color:rgba(12,102,228,.42);background:#fbfdff}.process-method-card:focus-visible{box-shadow:0 0 0 3px rgba(12,102,228,.11)}
.process-method-card h3{max-width:330px;margin:0;font-size:clamp(23px,2vw,30px);line-height:1.02;letter-spacing:-.04em}.process-method-card p{max-width:390px;margin:auto 0 0;padding-top:32px;font-size:14px;color:var(--muted-foreground)}
.process-method-visual{--process-data-height:78px;grid-column:2;grid-row:1/3;position:relative;display:flex;min-width:0;min-height:574px;flex-direction:column;overflow:hidden;border:1px solid #263248;border-radius:24px;background:#0b111c;color:#fff}
.has-js .process-method-visual{--process-data-height:168px}.has-js .process-method-visual.is-method-revealed{--process-data-height:78px}
.process-method-portrait{position:absolute;inset:0;overflow:hidden;background:#17233c}.process-method-portrait::after{position:absolute;z-index:1;right:0;bottom:0;left:0;height:200px;background:linear-gradient(180deg,rgba(11,17,28,0),rgba(11,17,28,.88));pointer-events:none;content:""}
.process-method-image,.process-method-video{display:block;width:100%;height:100%;object-fit:cover;object-position:center}.process-method-image{opacity:0;transform:scale(1.01);transition:opacity .65s ease}.process-method-image.is-loaded{opacity:1}.process-method-video{background:#17233c}
.process-method-caption{position:absolute;z-index:3;top:30px;left:28px;right:28px;max-width:none;padding:0;text-align:center}
.process-method-caption span{display:block;margin:0 0 8px;color:#fff;font-size:18.75px;font-weight:700;line-height:1.2;letter-spacing:-.02em;text-shadow:0 2px 12px rgba(0,0,0,.42)}
.process-method-caption p{max-width:360px;margin:0 auto;color:#c7d3e4;font-size:14.4px;line-height:1.45;text-shadow:0 2px 12px rgba(0,0,0,.48)}

.process-method-data{position:absolute;z-index:2;right:0;bottom:0;left:0;height:var(--process-data-height);overflow:hidden;border-top:1px solid rgba(12,102,228,.92);background:linear-gradient(180deg,rgba(11,17,28,.2),#0b111c 38px);transition:height .72s cubic-bezier(.22,1,.36,1)}
.process-method-data::before{position:absolute;z-index:2;top:0;right:0;left:0;height:58px;background:linear-gradient(180deg,rgba(12,102,228,.18),rgba(11,17,28,0));filter:blur(8px);content:"";pointer-events:none}
.process-method-data::after{position:absolute;z-index:4;top:-1px;left:-76px;width:76px;height:2px;background:linear-gradient(90deg,transparent,#fff,transparent);box-shadow:0 0 14px rgba(71,144,255,.85);content:"";animation:processMethodScan 5.8s ease-in-out infinite}
.process-method-data-lines{position:absolute;z-index:3;inset:5px 0 8px;overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 9%,#000 91%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent,#000 9%,#000 91%,transparent)}
.process-method-data-row{height:24px;overflow:hidden;color:#607593;font:600 8px/24px var(--mono);letter-spacing:.08em;white-space:nowrap}.process-method-data-row>div{display:flex;width:max-content;will-change:transform;animation:processMethodDataLeft 24s linear infinite}.process-method-data-row span{display:block;padding-right:30px}.process-method-data-row:nth-child(2),.process-method-data-row:nth-child(4){color:#7f94b0}.process-method-data-row:nth-child(2)>div,.process-method-data-row:nth-child(4)>div{animation-name:processMethodDataRight}.process-method-data-row:nth-child(2)>div{animation-duration:30s}.process-method-data-row:nth-child(3)>div{animation-duration:27s}.process-method-data-row:nth-child(4)>div{animation-duration:32s}.process-method-data-row:nth-child(5)>div{animation-duration:26s}
@keyframes processMethodDataLeft{to{transform:translateX(-50%)}}@keyframes processMethodDataRight{from{transform:translateX(-50%)}to{transform:translateX(0)}}@keyframes processMethodScan{0%,12%{transform:translateX(0);opacity:0}28%{opacity:1}72%{opacity:1}88%,100%{transform:translateX(520px);opacity:0}}
.why-grid,.control-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:70px;align-items:start}
.why-list{border-top:1px solid var(--line)}.why-list>div{display:grid;grid-template-columns:48px minmax(180px,.7fr) minmax(0,1fr);gap:18px;padding:24px 0;border-bottom:1px solid var(--line)}.why-list h3,.why-list p{margin:0}.why-list h3{font-size:19px}.why-list p{font-size:14px;color:var(--muted-foreground)}
.home-page main .home-proof{position:relative;background-color:#000!important;background-image:none!important;color:#f5f5f5;overflow:hidden}
.home-proof .container.proof-layout{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.75fr);gap:clamp(72px,8vw,140px);align-items:start;min-height:860px;padding-top:30px;padding-bottom:30px}
.proof-left{display:grid;grid-template-rows:minmax(430px,1fr) auto;min-width:0}
.proof-network{width:100%;max-width:720px;align-self:start}
.proof-network svg{display:block;width:100%;height:auto;overflow:visible}
.proof-stars circle{opacity:.92}.proof-branches path{stroke-width:2.6}
.proof-intro{max-width:690px;padding-top:14px}
.proof-kicker,.proof-item-label strong{font:600 11px/1 var(--mono);letter-spacing:.02em;text-transform:uppercase;color:#f3dc00}
.proof-intro h2{margin:16px 0 14px;font-size:clamp(52px,5.8vw,82px);font-weight:400;line-height:.98;letter-spacing:-.055em;color:#f4f4f4}
.proof-intro p{max-width:620px;margin:0;color:#b9b9b9;font-size:17px;line-height:1.32}
.proof-nav{display:flex;flex-wrap:wrap;gap:0;margin-top:8px}
.proof-nav a{position:relative;color:#f2f2f2;font-size:17px}
.proof-nav a+a{margin-left:22px;padding-left:22px}
.proof-nav a+a::before{content:"";position:absolute;left:0;top:50%;width:1px;height:18px;background:#646464;transform:translateY(-50%)}
.proof-list{display:flex;flex-direction:column;gap:72px;padding-top:145px}
.proof-item{display:block;color:#f5f5f5}
.proof-item:hover{color:#f5f5f5}
.proof-item-label{display:flex;align-items:baseline;gap:4px;margin-bottom:10px;font-size:11px;color:#bfbfbf}
.proof-item h3{margin:0;font-size:clamp(34px,3.1vw,52px);font-weight:400;line-height:.98;letter-spacing:-.045em;color:#f4f4f4}
.proof-item p{max-width:540px;margin:12px 0 0;color:#b8b8b8;font-size:17px;line-height:1.3}
@media(max-width:1050px){.home-proof .container.proof-layout{grid-template-columns:1fr;min-height:0;gap:72px}.proof-left{grid-template-rows:auto auto}.proof-network{max-width:680px}.proof-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px;padding-top:0}.proof-item h3{font-size:clamp(28px,4vw,40px)}.proof-item p{font-size:15px}}
@media(max-width:760px){.home-proof .container.proof-layout{gap:52px;padding-top:8px;padding-bottom:8px}.proof-network{width:116%;margin-left:-8%}.proof-intro h2{font-size:clamp(44px,13vw,62px)}.proof-intro p{font-size:16px}.proof-nav a{font-size:15px}.proof-list{grid-template-columns:1fr;gap:44px}.proof-item h3{font-size:36px}.proof-item p{font-size:16px}.proof-left{gap:8px}}
@media(prefers-reduced-motion:reduce){.proof-item,.proof-nav a{transition:none}}
.control-grid .check-list{margin:0;columns:2;column-gap:38px}.control-grid .check-list li{break-inside:avoid;margin-bottom:14px}
@media(max-width:1050px){.home-hero-grid,.why-grid,.control-grid{grid-template-columns:1fr}.home-hero-panel{max-width:760px}.problem-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.process-method-grid{grid-template-columns:repeat(2,minmax(0,1fr));grid-template-rows:auto}.process-method-card-diagnostic{grid-column:1;grid-row:1}.process-method-card-architecture{grid-column:2;grid-row:1}.process-method-visual{grid-column:1/-1;grid-row:2;min-height:590px}.process-method-card-launch{grid-column:1;grid-row:3}.process-method-card-growth{grid-column:2;grid-row:3}.proof-grid{grid-template-columns:1fr 1fr}.proof-card-main{grid-column:1/-1}}
@media(max-width:760px){.home-hero-company{padding-top:72px}.home-hero-company h1{font-size:clamp(44px,13vw,64px)}.home-hero-grid{gap:34px}.home-hero-panel{padding:18px;border-radius:22px}.home-hero-compare{grid-template-columns:1fr;gap:6px}.problem-grid,.proof-grid{grid-template-columns:1fr}.problem-card{min-height:210px}.process-method-grid{grid-template-columns:1fr}.process-method-card,.process-method-visual{grid-column:auto;grid-row:auto}.process-method-card{min-height:230px;padding:24px}.process-method-card h3{font-size:25px}.process-method-visual{min-height:500px}.process-method-caption{top:22px;left:18px;right:18px;max-width:none;padding:0}.process-method-caption span{font-size:17.5px}.process-method-caption p{max-width:320px;font-size:13.5px}.process-method-data-row{font-size:7.5px}.why-list>div{grid-template-columns:36px 1fr}.why-list p{grid-column:2}.proof-card-main{grid-column:auto}.proof-card{min-height:270px}.control-grid .check-list{columns:1}}
@media(prefers-reduced-motion:reduce){.process-method-card,.process-method-data,.process-method-image{transition:none}.process-method-data-row>div,.process-method-data::after{animation:none!important}.process-method-data-row>div{transform:none!important}}

/* Visual slots fill the remaining card height, matching the reference composition. */
.system-bento-control .visual-placeholder,
.system-bento-web .visual-placeholder{
  flex:1 1 auto;
  width:auto;
  min-height:0;
  margin:24px -26px -26px;
  padding:28px 26px 76px;
  align-content:center;
  border-top:1px dashed rgba(23,32,51,.14);
  border-bottom-left-radius:28px;
  border-bottom-right-radius:28px;
}
.system-bento-control .system-bento-link,
.system-bento-web .system-bento-link{
  position:absolute;
  left:26px;
  right:26px;
  bottom:20px;
  z-index:2;
  padding-top:0;
}
.system-bento-web .visual-placeholder-light{
  min-height:128px;
}
@media(max-width:760px){
  .system-bento-control .visual-placeholder,
  .system-bento-web .visual-placeholder{
    margin:24px -24px -24px;
    padding:26px 24px 72px;
    border-bottom-left-radius:22px;
    border-bottom-right-radius:22px;
  }
  .system-bento-control .system-bento-link,
  .system-bento-web .system-bento-link{
    left:24px;
    right:24px;
    bottom:18px;
  }
}

/* ---------- flat surface system: reference-aligned ---------- */
:root{
  --surface-flat:#f2f2f4;
  --surface-flat-hover:#ececef;
}

/* Light content surfaces use a single neutral fill: no border, gradient or blur. */
:where(
  .card:not(.card-big),
  .link-card,
  .tier,
  .ba-col,
  .table-wrap,
  .sc-workflow,
  .sc-node,
  .lab-feed-card,
  .lab-feed-item.is-featured .lab-feed-card,
  .ui-tree,
  .ui-sidebar,
  .home-hero-panel,
  .home-section .card:not(.card-big),
  .home-system .rows,
  .system-bento-card:not(.system-bento-core),
  .problem-card,
  .proof-card:not(.proof-card-main),
  .visual-placeholder
){
  border-color:transparent;
  background:var(--surface-flat);
  background-image:none;
  box-shadow:none;
  backdrop-filter:none;
}

:where(
  a.card:not(.card-big),
  .link-card,
  .system-bento-card:not(.system-bento-core),
  .problem-card,
  .proof-card:not(.proof-card-main)
):hover{
  border-color:transparent;
  background:var(--surface-flat-hover);
  box-shadow:none;
}

/* Remove elevation from structural blocks site-wide. */
:where(
  .dd-in,
  .sc-workflow,
  .sc-node,
  .lab-feed-icon,
  .lab-feed-card,
  .decision-hero .btn-primary,
  .home-hero .eyebrow,
  .home-hero .btn-primary,
  .home-signal,
  .home-section .card,
  .home-section .card-big,
  .home-system .rows,
  .home-position blockquote,
  .home-faq .faq,
  .system-bento-card,
  .system-bento-core,
  .home-hero-panel,
  .problem-card,
  .proof-card
){
  box-shadow:none;
}

:where(
  .home-section a.card,
  .system-bento-card,
  .problem-card,
  .proof-card
):hover{
  box-shadow:none;
}

/* Flat cards should not simulate elevation by moving upward. */
:where(
  a.card:not(.card-big),
  .link-card,
  .system-bento-card:not(.system-bento-core),
  .problem-card,
  .proof-card:not(.proof-card-main)
):hover{
  transform:none;
}

/* Homepage system pipeline — AgencyAI visual language, reference-informed composition only. */
.home-hero-pipeline{position:relative;padding:72px 0 72px;background:var(--background);overflow:hidden}
.home-hero-pipeline::before{content:"";position:absolute;left:50%;top:52%;width:min(760px,58vw);aspect-ratio:1;transform:translate(-50%,-34%);border-radius:50%;background:radial-gradient(circle,rgba(12,102,228,.09) 0%,rgba(12,102,228,.04) 32%,transparent 70%);pointer-events:none}
.home-hero-copy{max-width:980px;margin:0 auto;text-align:center;position:relative;z-index:4}
.home-hero-copy .eyebrow{justify-content:center;margin-bottom:20px;color:var(--accent)}
.home-hero-pipeline h1{max-width:980px;margin:0 auto;font-family:var(--disp);font-weight:650;font-size:clamp(44px,5.6vw,78px);line-height:.98;letter-spacing:-.05em;color:var(--foreground)}
.home-hero-pipeline .lead{max-width:760px;margin:24px auto 0;font:400 18px/1.58 'Montserrat',system-ui,sans-serif;color:var(--muted-foreground)}
.home-hero-pipeline .cta-row{justify-content:center;margin-top:30px}
.home-hero-pipeline .btn{min-width:180px;min-height:46px;font-family:'Montserrat',system-ui,sans-serif}
.home-hero-pipeline .btn-primary{background:var(--primary);border-color:var(--primary);color:var(--primary-foreground)}
.home-hero-pipeline .btn-primary:hover{background:var(--primary-hover);border-color:var(--primary-hover)}

.hero-pipeline{position:relative;height:476px;margin:42px auto 0;max-width:1488px;isolation:isolate}
.hero-pipeline::before{content:"";position:absolute;left:50%;top:50%;width:520px;height:250px;transform:translate(-50%,-50%);background:radial-gradient(ellipse,rgba(12,102,228,.085),rgba(12,102,228,.028) 44%,transparent 72%);filter:blur(10px);pointer-events:none}
.hero-pipeline-lines{position:absolute;inset:0;width:100%;height:476px;overflow:visible;z-index:1}
.pipe-lines path,.pipe-trunk{fill:none;stroke:var(--line2);stroke-width:1.35;vector-effect:non-scaling-stroke;stroke-linecap:round;transition:stroke .25s,opacity .25s}
.pipe-trunk{stroke:rgba(12,102,228,.34);stroke-width:1.8;stroke-dasharray:4 10;animation:agency-trunk-flow 2.6s linear infinite;filter:none;}
.pipe-lines-in path{stroke:rgba(12,102,228,.22)}
.pipe-lines-out path{stroke:rgba(12,102,228,.28);stroke-width:1.45}
.reference-core{transform:translate(22.689px,12.733px);filter:none;transform-box:view-box;transform-origin:734px 226px;animation:agency-core-float 7.2s cubic-bezier(.4,0,.2,1) infinite}
.reference-core-tile{fill:#f8f3f1;stroke:rgba(23,32,51,.08);stroke-width:1;transform-box:fill-box;transform-origin:center;will-change:transform,opacity;animation:agency-tile-breathe 7.2s cubic-bezier(.4,0,.2,1) infinite}
.reference-core-tile-left{fill-opacity:.96;animation-delay:-.2s}.reference-core-tile-top{fill-opacity:.84;animation-delay:-1.1s}.reference-core-tile-right{fill-opacity:.76;animation-delay:-2s}.reference-core-tile-bottom{fill-opacity:.88;animation-delay:-2.9s}
.reference-core-center{fill:url(#agency-core-gradient);stroke:rgba(23,32,51,.08);stroke-width:1;transform-box:fill-box;transform-origin:center;will-change:transform;animation:agency-center-pulse 3.6s cubic-bezier(.4,0,.2,1) infinite}
.reference-core-mark{font:650 12px/1 var(--disp);fill:#17345f;letter-spacing:-.04em;dominant-baseline:middle}
.pipe-core{display:none}

.pipe-lines path.is-active{stroke:var(--accent);opacity:.92;filter:none;}
.pipe-particle{fill:var(--accent);filter:none;will-change:transform,opacity}.pipe-particle-halo{fill:none;stroke:rgba(12,102,228,.24);stroke-width:1.2;filter:none;}
.pipe-particle-soft{fill:#6ea8f5;opacity:.72}
.hero-pipeline.is-processing .core-center{border-color:rgba(12,102,228,.82);box-shadow:none;}
.hero-pipeline.is-processing .core-center::before{background:linear-gradient(145deg,#0c66e4,#17345f)}
.hero-pipeline.is-processing .core-orbit{animation-duration:3.6s}
.hero-pipeline.is-emitting .pipe-lines-out path{stroke:rgba(12,102,228,.38)}
.pipe-col{position:absolute;top:21px;bottom:21px;display:flex;flex-direction:column;justify-content:space-between;z-index:3}
.pipe-sources{left:0;width:274px;align-items:flex-end}.pipe-destinations{right:0;width:274px;align-items:flex-start}
.pipe-pill{display:inline-flex;align-items:center;min-height:34px;padding:8px 14px;border:1px solid var(--border);border-radius:999px;background:rgba(255,255,255,.88);box-shadow:none;backdrop-filter:blur(8px);font:500 12px/1 var(--mono);letter-spacing:.015em;color:var(--foreground-soft);white-space:nowrap;transition:border-color .2s,background .2s,color .2s,transform .2s}
.pipe-pill::before{content:"";width:7px;height:7px;margin-right:9px;border:1px solid var(--subtle-foreground);border-radius:50%;background:var(--surface)}
.pipe-pill.is-active{border-color:rgba(12,102,228,.42);background:var(--accent-soft);color:var(--accent-ink);transform:translateY(-1px)}
.pipe-pill.is-active::before{border-color:var(--accent);background:var(--accent);box-shadow:none;}
.pipe-pill-out{background:rgba(247,248,250,.92);max-width:274px}
.pipe-sources .pipe-pill:nth-child(1),.pipe-sources .pipe-pill:nth-child(7){margin-right:8px}
.pipe-sources .pipe-pill:nth-child(2),.pipe-sources .pipe-pill:nth-child(6){margin-right:28px}
.pipe-sources .pipe-pill:nth-child(3),.pipe-sources .pipe-pill:nth-child(5){margin-right:46px}
.pipe-sources .pipe-pill:nth-child(4){margin-right:58px}
.pipe-destinations .pipe-pill:nth-child(1),.pipe-destinations .pipe-pill:nth-child(4){margin-left:12px}
.pipe-destinations .pipe-pill:nth-child(2),.pipe-destinations .pipe-pill:nth-child(3){margin-left:38px}

.pipe-events span{position:absolute;left:var(--x);top:var(--y);z-index:2;padding:5px 8px;border:1px solid var(--border-subtle);border-radius:999px;background:rgba(255,255,255,.9);font:500 9px/1 var(--mono);letter-spacing:.035em;text-transform:uppercase;color:var(--subtle-foreground);opacity:.72;transition:opacity .2s,border-color .2s,color .2s}
.pipe-events span::before{content:"";display:inline-block;width:5px;height:5px;margin-right:5px;border:1px solid var(--accent);transform:rotate(45deg)}
.pipe-events span.is-active{opacity:1;border-color:rgba(12,102,228,.34);color:var(--accent-ink)}
.pipe-core{position:absolute;left:50%;top:50%;width:252px;height:252px;transform:translate(-50%,-50%);z-index:4}
.pipe-core::before{content:"";position:absolute;inset:38px;background:rgba(255,255,255,.9);clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%);filter:blur(1px);z-index:0;pointer-events:none}
.pipe-glow{position:absolute;inset:-72px;border-radius:50%;background:radial-gradient(circle,rgba(12,102,228,.16) 0%,rgba(12,102,228,.065) 38%,transparent 72%);filter:blur(8px);animation:agency-core-breathe 5.8s ease-in-out infinite;z-index:-1}
.core-node,.core-center{position:absolute;left:50%;top:50%;display:flex;align-items:center;justify-content:center;border:1px solid rgba(12,102,228,.28);box-shadow:none;font:600 10px/1 var(--mono);text-transform:uppercase;color:var(--accent-ink);transition:background .32s,border-color .32s,transform .32s,box-shadow .32s;z-index:2}
.core-node{width:96px;height:96px;border-radius:18px;background:rgba(233,242,255,.98);transform:translate(-50%,-50%) rotate(45deg)}
.core-node>span{display:block;transform:rotate(-45deg);white-space:nowrap}
.core-node-top{top:23%}
.core-node-left{left:23%}
.core-node-right{left:77%}
.core-node-bottom{top:77%;background:rgba(244,245,247,.98)}
.core-node.is-active{background:rgba(218,233,255,1);border-color:rgba(12,102,228,.58);box-shadow:none;}
.core-center{width:100px;height:100px;border-radius:20px;background:var(--surface);border-color:rgba(12,102,228,.52);transform:translate(-50%,-50%) rotate(45deg);z-index:5;box-shadow:none;}
.core-center::before{content:"";position:absolute;left:50%;top:50%;width:42px;height:42px;border-radius:14px;background:linear-gradient(145deg,var(--foreground),#304564);transform:translate(-50%,-50%) rotate(-45deg);box-shadow:none;}
.core-brand{position:relative;z-index:2;transform:rotate(-45deg);font:650 12px/1 var(--disp);letter-spacing:-.04em;color:#fff}
.core-orbit{position:absolute;inset:11px;transform:rotate(-45deg);animation:agency-core-spin 8.5s linear infinite}
.core-orbit span{position:absolute;left:50%;top:50%;width:7px;height:7px;margin:-3.5px;border-radius:50%;background:var(--foreground);transform:rotate(calc(var(--i)*30deg)) translateY(-35px)}
.core-orbit span:nth-child(1){--i:0}.core-orbit span:nth-child(2){--i:1}.core-orbit span:nth-child(3){--i:2}.core-orbit span:nth-child(4){--i:3}.core-orbit span:nth-child(5){--i:4}.core-orbit span:nth-child(6){--i:5}.core-orbit span:nth-child(7){--i:6}.core-orbit span:nth-child(8){--i:7}.core-orbit span:nth-child(9){--i:8}.core-orbit span:nth-child(10){--i:9}.core-orbit span:nth-child(11){--i:10}.core-orbit span:nth-child(12){--i:11}
@keyframes agency-trunk-flow{to{stroke-dashoffset:-28}}
@keyframes agency-core-float{0%,100%{transform:translate(22.689px,12.733px)}50%{transform:translate(22.689px,9.733px)}}
@keyframes agency-tile-breathe{0%,100%{transform:translate(0,0) scale(1);opacity:.86}50%{transform:translate(0,-2px) scale(1.018);opacity:1}}
@keyframes agency-center-pulse{0%,100%{transform:scale(.985)}50%{transform:scale(1.035)}}
@keyframes agency-core-breathe{0%,100%{transform:scale(.92);opacity:.62}50%{transform:scale(1.06);opacity:1}}
@keyframes agency-core-spin{from{transform:rotate(-45deg)}to{transform:rotate(315deg)}}

@media(max-width:1050px){
  .home-hero-pipeline{padding-top:58px}
  .hero-pipeline{height:auto;min-height:560px;margin-top:42px;display:grid;grid-template-columns:1fr 230px 1fr;gap:18px;align-items:center}
  .hero-pipeline-lines{display:none}.pipe-col{position:relative;inset:auto;width:100%;gap:12px;justify-content:center}.pipe-sources{align-items:flex-end}.pipe-destinations{align-items:flex-start}
  .reference-core{display:none}.pipe-core{display:block;position:relative;left:auto;top:auto;transform:none;margin:auto;width:230px;height:230px}.pipe-events{display:none}.pipe-sources .pipe-pill,.pipe-destinations .pipe-pill{margin-left:0;margin-right:0}
}
@media(max-width:760px){
  .home-hero-pipeline{padding:48px 0 26px}
  .home-hero-pipeline h1{font-size:clamp(38px,11.5vw,58px);line-height:1}
  .home-hero-pipeline .lead{font-size:16px;line-height:1.58;margin-top:22px}
  .home-hero-pipeline .cta-row{flex-direction:column;align-items:stretch}.home-hero-pipeline .btn{width:100%}
  .hero-pipeline{min-height:0;grid-template-columns:1fr;margin-top:38px;padding-bottom:8px}
  .pipe-core{order:1;width:214px;height:214px}.pipe-sources{order:2;align-items:stretch}.pipe-destinations{order:3;align-items:stretch}
  .pipe-col{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.pipe-pill{justify-content:flex-start;min-width:0;white-space:normal;font-size:11px;padding:10px 12px}
}
@media(max-width:420px){.pipe-col{grid-template-columns:1fr}.home-hero-pipeline h1{font-size:clamp(36px,11vw,50px)}}
@media(prefers-reduced-motion:reduce){.pipe-glow,.core-orbit,.pipe-trunk,.reference-core,.reference-core-tile,.reference-core-center{animation:none}.pipe-particle,.pipe-particle-halo{display:none}.pipe-pill,.core-node,.pipe-events span{transition:none}}


/* --- Hero pipeline: механика AISystems --- */
.pipe-events{display:none}
.hero-pipeline::before{width:600px;height:320px;background:radial-gradient(ellipse at 46% 50%,rgba(121,236,180,.5),rgba(229,210,139,.28) 52%,transparent 76%);filter:blur(52px);opacity:.85}
.home-hero-pipeline::before{background:radial-gradient(circle,rgba(121,236,180,.12) 0%,rgba(229,210,139,.06) 34%,transparent 70%)}
.pipe-lines path,.pipe-trunk,.pipe-trunk.pipe-trunk-out{stroke:rgba(36,36,36,.1);stroke-width:2;stroke-dasharray:none;animation:none;filter:none}
.pipe-lines-out path{stroke:#e0ddd9}
.hero-pipeline.is-emitting .pipe-lines-out path{stroke:#e0ddd9}
.pipe-lines path.is-active{stroke:rgba(36,36,36,.1);filter:none;opacity:1}
.pipe-trail{fill:none;stroke-width:2;stroke-linecap:round}
.pipe-trail-neutral{stroke:rgba(36,36,36,.32)}
.pipe-trail-warn{stroke:#f3a90a}
.pipe-trail-alert{stroke:#ff6865}
.pipe-trail-ok{stroke:#31d179}
.pipe-chip rect{fill:#f4f4f7;stroke:rgba(36,36,36,.22);stroke-width:1}
.pipe-chip-ok rect{fill:#f5f7f7}
.pipe-chip text{font:500 9px/1 var(--mono);letter-spacing:.06em;text-transform:uppercase;fill:rgba(36,36,36,.62)}
.chip-icon-neutral{fill:none;stroke:rgba(36,36,36,.42);stroke-width:1.2}
.chip-icon-warn{fill:#f3a90a}
.chip-icon-alert{fill:#db3838}
.chip-icon-ok{fill:#169958}
.chip-icon-stroke{fill:none;stroke:#fff;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.pipe-mark .chip-icon-stroke{stroke-width:1.6}
.core-spinner-dot{fill:#242424}
.core-spinner-ring{animation:agency-dots-spin 7s linear infinite;transform-box:fill-box;transform-origin:center}
.core-tile-label{font:600 8px/1 var(--mono);letter-spacing:.06em;text-transform:uppercase;fill:rgba(36,36,36,.5)}
@keyframes agency-dots-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
.pipe-pill.is-active{border-color:rgba(22,153,88,.5);background:#ecf5ec;color:#17351f;transform:translateY(-1px)}
.pipe-pill.is-active::before{border-color:#169958;background:#169958;box-shadow:none;}
@media(prefers-reduced-motion:reduce){.core-spinner-ring{animation:none}.pipe-trails,.pipe-chips,.pipe-marks{display:none}}


/* AISystems hero motion polish: layered depth, reactive core and softer telemetry. */
.hero-pipeline{--hero-mx:0;--hero-my:0;perspective:1100px}
.hero-pipeline-lines{transform:translate3d(calc(var(--hero-mx) * 7px),calc(var(--hero-my) * 5px),0);transition:transform .32s cubic-bezier(.22,.61,.36,1)}
.hero-pipeline .pipe-col{transform:translate3d(calc(var(--hero-mx) * -4px),calc(var(--hero-my) * -3px),0);transition:transform .4s cubic-bezier(.22,.61,.36,1)}
.hero-pipeline::after{content:"";position:absolute;left:50%;top:48%;width:420px;height:220px;transform:translate(calc(-50% + var(--hero-mx) * 18px),calc(-50% + var(--hero-my) * 12px));border-radius:50%;background:radial-gradient(ellipse,rgba(121,236,180,.2),rgba(229,210,139,.12) 44%,transparent 72%);filter:blur(24px);opacity:.72;pointer-events:none;z-index:0;transition:transform .45s cubic-bezier(.22,.61,.36,1)}
.reference-core{transition:filter .35s ease}
.hero-pipeline.is-core-live .reference-core{filter:none;}
.hero-pipeline.is-core-live .reference-core-center{animation-duration:1.7s}
.hero-pipeline.is-core-live .core-spinner-ring{animation-duration:2.8s}
.pipe-trail{filter:none;}
.pipe-chip{filter:none;}
.pipe-chip rect{transition:fill .2s ease,stroke .2s ease}
.pipe-mark{filter:none;}
@media(max-width:1050px){.hero-pipeline-lines{transform:none}.hero-pipeline .pipe-col{transform:none}.hero-pipeline::after{display:none}}
@media(prefers-reduced-motion:reduce){.hero-pipeline-lines,.hero-pipeline .pipe-col,.hero-pipeline::after{transition:none;transform:none}.hero-pipeline.is-core-live .reference-core-center,.hero-pipeline.is-core-live .core-spinner-ring{animation:none}}

/* Structural rebuild: source fan → four-stage processor → routed fan. */
.reference-core{transform:none;transform-origin:744px 228px;animation:agency-processor-float 7.2s cubic-bezier(.4,0,.2,1) infinite;filter:none;}
.reference-core-shell{fill:rgba(255,255,255,.82);stroke:rgba(36,36,36,.13);stroke-width:1.2}
.reference-core-rail{fill:rgba(247,246,242,.72);stroke:rgba(36,36,36,.07);stroke-width:1}
.reference-core-tile{fill:rgba(255,255,255,.86);stroke:rgba(36,36,36,.11);stroke-width:1;transform-box:fill-box;transform-origin:center;animation:agency-stage-breathe 7.2s cubic-bezier(.4,0,.2,1) infinite}
.reference-core-tile-left{fill:rgba(238,247,242,.96)}
.reference-core-tile-top{fill:rgba(247,246,238,.96)}
.reference-core-tile-right{fill:rgba(242,246,247,.96)}
.reference-core-tile-bottom{fill:rgba(247,242,238,.96)}
.reference-core-center{fill:url(#agency-core-gradient);stroke:rgba(36,36,36,.16);stroke-width:1.2;filter:none;transform-box:fill-box;transform-origin:center}
.reference-core-caption{font:600 8px/1 var(--mono);letter-spacing:.13em;fill:rgba(36,36,36,.4)}
.core-tile-label{font:600 7.5px/1 var(--mono);letter-spacing:.045em;fill:rgba(36,36,36,.58)}
.pipe-lines-in path,.pipe-lines-out path{stroke-width:1.7}
.pipe-trunk,.pipe-trunk.pipe-trunk-out{stroke-width:2.2}
@keyframes agency-processor-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-4px)}}
@keyframes agency-stage-breathe{0%,100%{transform:scaleY(.985);opacity:.82}50%{transform:scaleY(1.015);opacity:1}}

/* AISystems hero animation module, hosted locally. */
.hero-pipeline-aisystems{
  position:relative;
  width:100%;
  height:auto;
  min-height:0;
  aspect-ratio:1488 / 476;
  margin:30px auto 0;
  overflow:visible;
  perspective:none;
  isolation:isolate;
}
.hero-pipeline-aisystems::before,
.hero-pipeline-aisystems::after{content:none!important}
.aisystems-hero-animation{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.aisystems-hero-animation svg{
  display:block;
  width:100%!important;
  height:100%!important;
  overflow:visible!important;
}
@media(max-width:900px){
  .hero-pipeline-aisystems{
    width:1488px;
    max-width:none;
    height:476px;
    aspect-ratio:auto;
    left:50%;
    transform:translateX(-50%) scale(.63);
    transform-origin:50% 0;
    margin-bottom:-176px;
  }
}
@media(max-width:560px){
  .hero-pipeline-aisystems{
    transform:translateX(-50%) scale(.48);
    margin-top:12px;
    margin-bottom:-248px;
  }
}
@media(prefers-reduced-motion:reduce){
  .aisystems-hero-animation svg{animation-play-state:paused}
}

/* Русская локализация AISystems-анимации без изменения её графики и движения. */
.hero-pipeline-aisystems{overflow:hidden}
.aisystems-localized-labels{
  position:absolute;
  inset:0;
  z-index:5;
  pointer-events:none;
  font-family:var(--mono);
  color:#303532;
}
.aisystems-label{
  position:absolute;
  display:flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  white-space:nowrap;
  text-transform:uppercase;
  font-size:10px;
  font-weight:500;
  line-height:1;
  letter-spacing:.045em;
}
/* Полностью перекрывают английские векторные капсулы, повторяя их форму. */
.aisystems-source,
.aisystems-destination{
  height:40px;
  border:1px solid #646b67;
  border-radius:999px;
  background:#f3f7f3;
  box-shadow:none;
  transform:translateY(-50%);
}
.aisystems-source{
  left:6.15%;
  width:14.2%;
  padding:0 12px 0 31px;
}
.aisystems-destination{
  right:3.45%;
  width:14.2%;
  padding:0 15px;
}
.aisystems-source::before{
  content:'';
  position:absolute;
  left:12px;
  width:10px;
  height:10px;
  border:1px solid #727975;
  border-radius:50%;
  background:radial-gradient(circle at 50% 50%,#727975 0 1px,transparent 1.5px);
  opacity:.9;
}
.source-1,.destination-1{top:10.6%}
.source-2,.destination-2{top:23.2%}
.source-3,.destination-3{top:35.9%}
.source-4,.destination-4{top:48.5%}
.source-5,.destination-5{top:61.2%}
.source-6,.destination-6{top:73.9%}
.source-7{top:86.5%}
/* Центральные подписи закрывают только старые буквы, сохраняя ромбы и свечение. */
.aisystems-core{
  min-height:20px;
  padding:3px 7px;
  border-radius:8px;
  color:#4d5851;
  font-size:8px;
  font-weight:600;
  letter-spacing:.025em;
}
.core-top{
  left:47.05%;
  top:35.2%;
  width:6.2%;
  background:#c9efcc;
}
.core-left{
  left:42.2%;
  top:48.2%;
  width:5.5%;
  background:#c7ecc8;
}
.core-right{
  left:52.3%;
  top:48.2%;
  width:6.4%;
  background:#c7ecc8;
}
.core-bottom{
  left:46.65%;
  top:61.8%;
  width:6.9%;
  background:#e8e9c6;
}
@media(max-width:900px){
  .aisystems-label{font-size:10px}
}

/* Editable AISystems geometry. Stage 1 is deliberately static; stage 2 owns motion. */
.hero-pipeline-native{
  --flow-line:#dfddd9;
  --flow-source-fill:#F7F8FA;
  --flow-destination-fill:#f2f7ff;
  --flow-outline:#242424;
  --flow-text:#242424;
  --flow-icon:#4f5753;
  --flow-glow-top:#7db7ff;
  --flow-glow-bottom:#c8d8ff;
  position:relative;
  display:block!important;
  width:100%;
  max-width:none;
  min-height:0!important;
  height:auto;
  aspect-ratio:1488/476;
  margin:34px auto 0;
  overflow:visible;
  isolation:isolate;
}
.hero-pipeline-native::before,.hero-pipeline-native::after{content:none!important}
.agency-flow-svg{display:block;width:100%;height:100%;overflow:visible;font-family:var(--mono)}
.flow-glow{fill:url(#agency-flow-glow);filter:url(#agency-soft);opacity:.94;transform-origin:757.97px 239.14px}
.flow-lines path{fill:none;stroke:var(--line-color,var(--flow-line));stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.flow-pill{--node-fill:var(--flow-source-fill);--node-stroke:var(--flow-outline);--node-text:var(--flow-text);--node-icon:var(--flow-icon)}
.flow-pill-right{--node-fill:var(--flow-destination-fill)}
.flow-pill rect{fill:var(--node-fill);stroke:var(--node-stroke);stroke-width:1}
.flow-pill text{fill:var(--node-text);font-size:15px;font-weight:500;letter-spacing:.055em;dominant-baseline:auto}
.flow-icon{fill:none;stroke:var(--node-icon);stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round}
.flow-diamond{--node-text:#35423b}
.flow-diamond rect{stroke:rgba(255,255,255,.86);stroke-width:1.2}
.flow-diamond-top rect{fill:var(--node-fill,#c8ddff)}
.flow-diamond-left rect{fill:var(--node-fill,#d6e6ff)}
.flow-diamond-right rect{fill:var(--node-fill,#bdd6ff)}
.flow-diamond-bottom rect{fill:var(--node-fill,#d9e1ff)}
.flow-diamond text{fill:var(--node-text);font-size:10.5px;font-weight:700;letter-spacing:.035em}
.flow-core-ring{fill:none;stroke:none;stroke-width:0;filter:none;}
.flow-core-center{fill:#fff;stroke:none;stroke-width:0}
.flow-spinner{fill:var(--flow-outline);transform-origin:758px 238px}
.flow-spinner-center{fill:var(--flow-outline)}
.flow-animation-layer{pointer-events:none}
@media(max-width:900px){
  .hero-pipeline-native{display:block!important;width:100%;height:auto;aspect-ratio:1488/476;left:auto;transform:none;margin:24px auto 0;overflow:visible}
}
@media(max-width:560px){
  .hero-pipeline-native{width:112%;margin-top:18px;margin-left:-6%;margin-bottom:0}
  .flow-pill text{font-size:16px}
}
@media(prefers-reduced-motion:reduce){.flow-animation-layer{display:none}}


/* Home three-stage visual cards */
.home-summary{padding:0;background:#fff}
.home-summary .container{max-width:none;padding:0}
.home-summary-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.home-summary-card{min-width:0;border-left:1px solid var(--line);background:#fff}
.home-summary-card:first-child{border-left:0}
.home-summary-visual{position:relative;height:280px;overflow:hidden;border-bottom:1px solid var(--line);background:#f8f9fb}
.home-summary-copy{padding:26px 28px 30px}
.home-summary-copy>span{display:block;margin-bottom:12px;font:500 11px/1 var(--mono);letter-spacing:.1em;color:var(--accent)}
.home-summary-copy strong{display:block;font:650 19px/1.25 var(--disp);letter-spacing:-.015em}
.home-summary-copy p{margin-top:10px;max-width:390px;font-size:14px;line-height:1.58;color:var(--muted-foreground)}
.home-summary-grid>div::after,.home-summary-grid>article::after{display:none!important}
.home-summary-audit{display:grid;grid-template-columns:86px 1fr 95px;align-items:center;gap:18px;padding:42px 24px}
.audit-source{position:absolute;left:24px;width:92px;padding:9px 11px;border:1px solid var(--line);border-radius:999px;background:#fff;font:500 11px/1 var(--mono);color:var(--foreground)}
.audit-source:nth-child(1){top:42px}.audit-source:nth-child(2){top:105px}.audit-source:nth-child(3){top:168px}
.audit-lines{position:absolute;left:116px;top:48px;width:98px;height:148px}
.audit-lines i{position:absolute;left:0;width:100%;height:1px;background:repeating-linear-gradient(90deg,#b9c0c8 0 5px,transparent 5px 10px);transform-origin:right}
.audit-lines i:nth-child(1){top:10px;transform:rotate(25deg)}.audit-lines i:nth-child(2){top:72px}.audit-lines i:nth-child(3){top:134px;transform:rotate(-25deg)}
.audit-focus{position:absolute;left:50%;top:50%;width:132px;transform:translate(-50%,-50%);padding:17px 14px;border:1px solid #0e1116;border-radius:14px;background:#11151b;color:#fff;text-align:center}
.audit-focus b{display:block;color:#ff7e1b;font:500 10px/1 var(--mono)}.audit-focus span{display:block;margin-top:8px;font:650 14px/1.2 var(--disp)}.audit-focus small{display:block;margin-top:5px;color:#aeb5bf;font-size:10px}
.audit-result{position:absolute;right:22px;top:50%;transform:translateY(-50%);width:92px;padding:13px 10px;border:1px solid #ffb780;border-radius:12px;background:#fff8f2;text-align:center}.audit-result span{display:block;color:#d95d00;font:650 17px/1 var(--disp)}.audit-result small{display:block;margin-top:5px;color:#8a5a38;font-size:9px;line-height:1.3}
.home-summary-build{background-image:radial-gradient(circle at 1px 1px,#dfe3e8 1px,transparent 1px);background-size:18px 18px}
.home-summary-build svg{position:absolute;inset:0;width:100%;height:100%}.home-summary-build path{fill:none;stroke:#9fa8b2;stroke-width:1.4;stroke-dasharray:5 5}
.build-node{position:absolute;z-index:2;display:grid;place-items:center;border:1px solid var(--line);background:#fff;color:var(--foreground);font:500 11px/1 var(--mono)}
.build-node-main{left:50%;top:50%;width:126px;height:86px;transform:translate(-50%,-50%);border-color:#11151b;border-radius:16px;background:#11151b;color:#fff}.build-node-main b{font:700 24px/1 var(--disp);color:#ff7e1b}.build-node-main span{margin-top:-16px;font-size:10px;color:#c8ced6}
.build-node-crm,.build-node-data,.build-node-team,.build-node-ui{width:88px;height:42px;border-radius:999px}.build-node-crm{left:20px;top:27px}.build-node-data{left:20px;bottom:27px}.build-node-team{right:20px;top:27px}.build-node-ui{right:20px;bottom:27px}
.build-status{position:absolute;z-index:3;left:50%;bottom:20px;transform:translateX(-50%);padding:7px 10px;border:1px solid #a8d8b8;border-radius:999px;background:#f3fbf5;color:#267a43;font:500 10px/1 var(--mono)}
.home-summary-run{padding:28px 24px;background:#fbfbfc}
.run-title{font:650 15px/1.2 var(--disp);margin-bottom:30px}
.run-row{display:grid;grid-template-columns:75px 1fr 44px;align-items:center;gap:10px;margin-top:18px;font-size:11px}.run-row>span{color:var(--foreground)}.run-row i{height:6px;border-radius:999px;background:#e7eaee;overflow:hidden}.run-row b{display:block;height:100%;border-radius:inherit;background:#ff7e1b}.run-row em{font:500 10px/1 var(--mono);font-style:normal;text-align:right;color:var(--muted-foreground)}
.run-events{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:34px}.run-events span{position:relative;padding-top:18px;border-top:1px solid #d6dbe1;font:500 9px/1.2 var(--mono);color:#8a929b;text-align:center}.run-events span::before{content:"";position:absolute;top:-5px;left:50%;width:9px;height:9px;transform:translateX(-50%);border:1px solid #cbd1d8;border-radius:50%;background:#fff}.run-events .is-done::before{border-color:#11151b;background:#11151b}.run-events .is-live{color:#d95d00}.run-events .is-live::before{border-color:#ff7e1b;background:#ff7e1b}
@media(max-width:900px){.home-summary-grid{grid-template-columns:1fr}.home-summary-card{border-left:0;border-top:1px solid var(--line)}.home-summary-card:first-child{border-top:0}.home-summary-visual{height:260px}.home-summary-copy{padding:24px 20px 28px}.home-summary-audit{padding-left:16px;padding-right:16px}.audit-source{left:16px}.audit-result{right:16px}}
@media(max-width:430px){.home-summary-visual{height:245px}.audit-source{width:78px;font-size:9px;padding:8px}.audit-lines{left:94px;width:70px}.audit-focus{width:112px}.audit-result{width:78px}.build-node-crm,.build-node-data,.build-node-team,.build-node-ui{width:72px;font-size:9px}.build-node-crm,.build-node-data{left:10px}.build-node-team,.build-node-ui{right:10px}.build-node-main{width:112px}}


/* Home summary cards: contained white card layout */
.home-summary{padding:56px 0;background:#fff}
.home-summary .container{width:min(100% - 40px,1240px);max-width:1240px;margin:0 auto;padding:0}
.home-summary-grid{gap:22px;border:0;background:transparent}
.home-summary-card{overflow:hidden;border:1px solid var(--line);border-radius:16px;background:#fff}
.home-summary-card,.home-summary-card:first-child{border-left:1px solid var(--line)}
.home-summary-visual{height:260px;border-bottom:1px solid var(--line);background:#fff}
.home-summary-build{background-color:#fff;background-image:radial-gradient(circle at 1px 1px,#e7eaee 1px,transparent 1px)}
.home-summary-run{background:#fff}
@media(max-width:900px){
 .home-summary{padding:38px 0}
 .home-summary .container{width:min(100% - 28px,680px)}
 .home-summary-grid{gap:16px}
 .home-summary-card,.home-summary-card:first-child{border:1px solid var(--line)}
}


/* Global section numbering cleanup + home summary alignment */
.eyebrow .num,
.card-k,
.home-summary-copy>span{display:none!important}
.eyebrow .num::after{display:none!important}
.home-summary{border:0!important}
.home-summary-grid{border-top:0!important;border-bottom:0!important}
.home-summary .container{width:100%;max-width:1440px;margin:0 auto;padding:0 48px}
.home-summary + .sec{border-top:0!important}
@media(max-width:900px){
 .home-summary .container{width:100%;max-width:100%;padding:0 20px}
}

/* AgencyAI recolored audit SVG */
.home-summary-audit{display:block;padding:0}
.audit-bento-svg{display:block;width:100%;height:100%}
.audit-bento-svg text{font-family:var(--mono)}
.audit-svg-kicker{font-size:10px;font-weight:600;letter-spacing:.08em;fill:#5f6b78}
.audit-svg-chip{font-size:10px;font-weight:500;fill:#11151b}
.audit-svg-title{font-family:var(--disp)!important;font-size:14px;font-weight:650}
.audit-svg-note{font-size:9px;font-weight:500}
.audit-svg-metric{font-family:var(--disp)!important;font-size:22px;font-weight:700}
.audit-svg-footer{font-size:10px;font-weight:500;fill:#34404d}
@media(max-width:430px){.audit-bento-svg{min-width:390px;transform:translateX(-18px)}}

/* Original bento-5-grid artwork in AgencyAI palette */
.home-summary-audit{display:grid;place-items:center;padding:18px;background:#fff}
.audit-bento-image{display:block;width:min(100%,352px);height:auto;max-height:100%;object-fit:contain}

/* Stretch bento-5-grid across the entire first visual contour */
.home-summary-audit{display:block;padding:0!important}
.home-summary-audit .audit-bento-image{display:block;width:100%;height:100%;max-width:none;max-height:none;object-fit:fill}

/* First summary visual: composed bento-5 scene */
.home-summary-audit{display:block;padding:0!important;background:#f7f9fc}
.home-summary-audit .bento__preview{position:relative;width:100%;height:100%;overflow:hidden;background:linear-gradient(180deg,#fbfcfe 0%,#f3f6fa 100%)}
.home-summary-audit .bento-5{position:relative;width:100%;height:100%;overflow:hidden}
.home-summary-audit .bento-5__image{position:absolute;inset:0}
.home-summary-audit .bento-5__image img{display:block;width:100%;height:100%;object-fit:cover;object-position:center}
.home-summary-audit .bento-5__cursor{position:absolute;z-index:3;top:34%;left:61%;width:28px;transform:rotate(-8deg)}
.home-summary-audit .bento-5__cursor img{display:block;width:100%;height:auto}
.home-summary-audit .bento-5__tooltip{position:absolute;z-index:4;top:13%;right:10%;display:flex;align-items:center;gap:9px;padding:9px 11px 9px 14px;border:1px solid #aeb8c4;border-radius:999px;background:#fff;color:#11151b;font:600 12px/1 var(--sans)}
.home-summary-audit .bento-5__plus{width:22px;height:22px}
.home-summary-audit .bento-5__plus img{display:block;width:100%;height:100%}
.home-summary-audit .bento-5__boxes{position:absolute;z-index:2;left:8%;right:8%;bottom:8%;display:grid;grid-template-columns:1fr .58fr .58fr;gap:12px;align-items:end}
.home-summary-audit .bento-5__box{height:14px;border-radius:999px;background:#1677ff}
.home-summary-audit .bento-5__box:nth-child(2),.home-summary-audit .bento-5__box:nth-child(3){height:6px;background:#cbd4df}
@media(max-width:430px){
 .home-summary-audit .bento-5__tooltip{top:11%;right:7%;font-size:11px;padding:8px 9px 8px 12px}
 .home-summary-audit .bento-5__cursor{left:59%;width:24px}
}

/* Business interpretation inside the bento scene */
.home-summary-audit .bento-5__sources{position:absolute;z-index:3;left:7%;top:12%;display:flex;flex-direction:column;gap:8px}
.home-summary-audit .bento-5__sources span{display:inline-flex;width:max-content;padding:7px 10px;border:1px solid #cfd7e1;border-radius:999px;background:#fff;color:#26313d;font:500 10px/1 var(--mono)}
.home-summary-audit .bento-5__focus{position:absolute;z-index:3;left:50%;top:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;width:118px;height:78px;transform:translate(-50%,-50%);border:1px solid #0b1220;border-radius:16px;background:#11151b;color:#fff;text-align:center}
.home-summary-audit .bento-5__focus strong{font:650 13px/1.15 var(--disp)}
.home-summary-audit .bento-5__focus small{margin-top:6px;color:#b7c0cb;font:500 9px/1.2 var(--mono)}
.home-summary-audit .bento-5__tooltip{top:13%;right:7%;border-color:#ff9a43;background:#fff8f2;color:#d85f00}
.home-summary-audit .bento-5__result{position:absolute;z-index:3;left:7%;right:7%;bottom:7%;padding:10px 12px;border:1px solid #d9e0e8;border-radius:12px;background:#fff;color:#34404d;font:500 10px/1.3 var(--mono);text-align:center}
.home-summary-audit .bento-5__cursor{top:38%;left:64%}
@media(max-width:430px){
 .home-summary-audit .bento-5__sources{left:5%;top:10%;gap:6px}
 .home-summary-audit .bento-5__sources span{padding:6px 8px;font-size:9px}
 .home-summary-audit .bento-5__focus{width:104px;height:70px}
 .home-summary-audit .bento-5__tooltip{right:5%;font-size:10px}
 .home-summary-audit .bento-5__result{left:5%;right:5%;font-size:9px}
}

/* Unified pipeline pill typography */
.flow-pill text{dominant-baseline:auto;alignment-baseline:auto}

/* Pipeline pills rebuilt as consistent flex components */
.flow-pill{overflow:visible}
.flow-pill-wrap{display:flex;width:100%;height:45px;align-items:center;box-sizing:border-box}
.flow-pill-wrap-left{justify-content:flex-end}
.flow-pill-wrap-right{justify-content:flex-start}
.flow-pill-chip{display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-height:45px;padding:0 18px;border:1px solid var(--flow-outline);border-radius:999px;background:var(--flow-source-fill);color:var(--flow-text);font:500 15px/1 'Roboto Condensed',Arial Narrow,sans-serif;letter-spacing:.055em;white-space:nowrap}
.flow-pill-right .flow-pill-chip{background:var(--flow-destination-fill)}
.flow-pill-icon{display:inline-flex;align-items:center;justify-content:center;flex:0 0 16px;width:16px;height:16px;margin-right:9px;color:var(--flow-icon)}
.flow-pill-icon svg{display:block;width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round}
.flow-pill-label{display:block;line-height:1}
.flow-pill.is-active .flow-pill-chip{border-color:var(--accent);background:#fff8f2}
@media(max-width:560px){.flow-pill-chip{font-size:16px}}

/* Static payload state: raw signals enter the AI core, processed signals leave it. */
.flow-signal-layer{
  --flow-trace-in:#ff7a65;
  --flow-trace-out:#26bb74;
  --flow-chip-bg:#f4f4f7;
  --flow-chip-border:#e5e5e8;
  --flow-chip-text:#77777c;
  pointer-events:none;
}
.flow-tracer{fill:none;stroke:var(--trace-color);stroke-width:2.15;stroke-linecap:round;stroke-linejoin:round;vector-effect:non-scaling-stroke}
.flow-tracer-in{--trace-color:var(--flow-trace-in)}
.flow-tracer-out{--trace-color:var(--flow-trace-out)}
.flow-data-chip{--chip-accent:#969698;color:var(--chip-accent)}
.flow-data-chip-alert{--chip-accent:#ed6259}
.flow-data-chip-event{--chip-accent:#f3a90a}
.flow-data-chip-finding{--chip-accent:#969698}
.flow-data-chip-shell{fill:var(--flow-chip-bg);stroke:var(--flow-chip-border);stroke-width:.9;vector-effect:non-scaling-stroke}
.flow-data-chip text{fill:var(--flow-chip-text);font:500 8.4px/1 var(--mono);letter-spacing:.035em}
.flow-data-icon{overflow:visible;color:var(--chip-accent);fill:none;stroke:currentColor;stroke-width:1.3;stroke-linecap:round;stroke-linejoin:round;vector-effect:non-scaling-stroke}


/* Card 05 — Production / AI Search / Managed Ops background */
.system-bento-extensions{
  isolation:isolate;
  background-color:#f5f7f3!important;
  background-image:
    linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.94) 42%,rgba(255,255,255,.58) 70%,rgba(255,255,255,.18) 100%),
    url('/assets/backgrounds/managed-ops-network.png')!important;
  background-repeat:no-repeat!important;
  background-position:center,bottom center!important;
  background-size:100% 100%,cover!important;
}
.system-bento-extensions::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(255,255,255,.2),transparent 42%,rgba(255,255,255,.08));
}
.system-bento-extensions>.system-bento-top,
.system-bento-extensions>.system-bento-body,
.system-bento-extensions>.system-bento-tags,
.system-bento-extensions>.system-bento-link{
  position:relative;
  z-index:2;
}
@media(max-width:760px){
  .system-bento-extensions{
    background-position:center,bottom center!important;
    background-size:100% 100%,cover!important;
  }
}


/* Light system cards aligned with the section below */
.system-bento-control,
.system-bento-web,
.system-bento-trust,
.system-bento-extensions{
  border:0!important;
  background-color:var(--background-subtle)!important;
}
.system-bento-control:hover,
.system-bento-web:hover,
.system-bento-trust:hover,
.system-bento-extensions:hover{
  border-color:transparent!important;
}
.system-bento-control::after,
.system-bento-web::after,
.system-bento-trust::after,
.system-bento-extensions::after{
  display:none!important;
}
.system-bento-web .visual-placeholder,
.system-bento-trust .visual-placeholder{
  background:var(--background-subtle)!important;
}
.system-bento-extensions{
  background-image:
    linear-gradient(180deg,rgba(247,248,250,.96) 0%,rgba(247,248,250,.82) 34%,rgba(247,248,250,.18) 58%,rgba(247,248,250,0) 76%),
    url('/assets/backgrounds/managed-ops-network.png')!important;
}
.system-bento-extensions::before{display:none!important}


/* Increase the three lower system cards by 75px */
.system-bento-web,
.system-bento-trust,
.system-bento-extensions{
  min-height:375px;
}



/* Align all system card headings closer to the top edge */
.system-bento-card .system-bento-body,
.system-bento-core .system-bento-body,
.system-bento-control .system-bento-body,
.system-bento-web .system-bento-body,
.system-bento-trust .system-bento-body,
.system-bento-extensions .system-bento-body{
  margin-top:14px;
}
@media(max-width:760px){
  .system-bento-card .system-bento-body,
  .system-bento-core .system-bento-body,
  .system-bento-control .system-bento-body,
  .system-bento-web .system-bento-body,
  .system-bento-trust .system-bento-body,
  .system-bento-extensions .system-bento-body{
    margin-top:14px;
  }
}

/* Home hero heading: stable two-line desktop composition */
.home-hero h1{max-width:1120px}
.home-hero h1 .desktop-break{display:block}
@media(max-width:700px){
  .home-hero h1 .desktop-break{display:none}
}

/* White integration brand marquee after home hero */
.brand-marquee{
  overflow:hidden;
  padding:22px 0 24px;
  border-top:1px solid var(--border-subtle);
  border-bottom:1px solid var(--border-subtle);
  background:#fff;
}
.brand-marquee-head{
  margin-bottom:18px;
  padding:0 24px;
  color:var(--muted-foreground);
  font:600 12px/1.2 var(--sans);
  letter-spacing:.02em;
  text-align:center;
}
.brand-marquee-viewport{
  overflow:hidden;
  width:100%;
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 7%,#000 93%,transparent 100%);
  mask-image:linear-gradient(90deg,transparent 0,#000 7%,#000 93%,transparent 100%);
}
.brand-marquee-track{
  display:flex;
  width:max-content;
  animation:brandMarquee 28s linear infinite;
  will-change:transform;
}
.brand-marquee:hover .brand-marquee-track{animation-play-state:paused}
.brand-marquee-group{
  display:flex;
  align-items:center;
  flex:0 0 auto;
  gap:72px;
  padding-right:72px;
}
.brand-wordmark{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  color:#5f6670;
  font:650 19px/1 var(--disp);
  letter-spacing:-.03em;
  white-space:nowrap;
  opacity:.82;
}
.brand-wordmark-n8n{letter-spacing:-.06em}
@keyframes brandMarquee{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}
@media(max-width:700px){
  .brand-marquee{padding:18px 0 20px}
  .brand-marquee-head{margin-bottom:14px;font-size:11px}
  .brand-marquee-group{gap:42px;padding-right:42px}
  .brand-wordmark{font-size:17px}
  .brand-marquee-track{animation-duration:22s}
}
@media(prefers-reduced-motion:reduce){
  .brand-marquee-track{animation:none;transform:none}
  .brand-marquee-viewport{overflow-x:auto;mask-image:none;-webkit-mask-image:none}
}

/* Hero title and rotating capability label */
.home-hero-copy{max-width:1280px}
.home-hero h1{max-width:none;font-size:clamp(52px,5.7vw,82px);line-height:.98;text-wrap:initial}
.hero-title-line{display:block;white-space:nowrap}
.hero-rotating-label{display:inline-flex;align-items:center;gap:8px;min-height:36px;margin-bottom:20px;padding:8px 13px;border:1px solid #d6dde8;border-radius:999px;background:#fff;color:#2f3a47;font:500 13px/1 var(--sans)}
.hero-rotating-icon{display:grid;place-items:center;width:16px;height:16px;color:#4f5c6b}
.hero-rotating-icon svg{display:block;width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.4;stroke-linecap:round;stroke-linejoin:round}
.hero-rotating-viewport{display:inline-grid;min-width:148px;overflow:hidden}
.hero-rotating-text{grid-area:1/1;white-space:nowrap;transition:opacity .28s ease,transform .28s ease}
.hero-rotating-text.is-leaving{opacity:0;transform:translateY(-7px)}
.hero-rotating-text.is-entering{opacity:0;transform:translateY(7px)}
@media(max-width:900px){
  .home-hero h1{font-size:clamp(46px,8.4vw,68px)}
}
@media(max-width:700px){
  .home-hero-copy{max-width:100%}
  .home-hero h1{font-size:clamp(40px,12vw,58px);line-height:1}
  .hero-title-line{white-space:normal}
  .hero-rotating-label{font-size:12px}
}

/* Mathematically seamless three-copy marquee */
.brand-marquee-track{animation-name:brandMarqueeLoop;animation-duration:30s}
@keyframes brandMarqueeLoop{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-33.333333%,0,0)}
}
.brand-marquee:hover .brand-marquee-track{animation-play-state:running}


/* Refined continuous marquee and smooth hero label transition */
.brand-marquee{padding:24px 0}
.brand-marquee-track{animation-duration:38s!important;animation-timing-function:linear!important;animation-iteration-count:infinite!important;animation-play-state:running!important}
.brand-marquee:hover .brand-marquee-track{animation-play-state:running!important}
.hero-rotating-viewport{position:relative;display:inline-block;width:205px;height:18px;overflow:hidden;vertical-align:middle}
.hero-rotating-text{position:absolute;inset:0 auto auto 0;display:block;white-space:nowrap;opacity:1;transform:translateY(0);transition:opacity .48s ease,transform .48s cubic-bezier(.22,.61,.36,1)}
.hero-rotating-text.is-leaving{opacity:0;transform:translateY(-8px)}
.hero-rotating-text.is-entering{opacity:0;transform:translateY(8px)}
.hero-rotating-text.is-active{opacity:1;transform:translateY(0)}


/* Final hero label sizing, brand logos and marquee spacing */
.brand-marquee{padding:75px 0!important}
.brand-marquee-group{gap:64px;padding-right:64px}
.brand-logo{display:inline-flex;align-items:center;gap:10px;min-height:34px;color:#4b535f;font:650 18px/1 var(--disp);white-space:nowrap;opacity:.92}
.brand-logo img{display:block;width:24px;height:24px;object-fit:contain;filter:grayscale(1);opacity:.86}
.brand-logo:has(img[src*="pipedrive"]){gap:0}
.brand-logo:has(img[src*="pipedrive"]) span{display:none}
.brand-logo:has(img[src*="pipedrive"]) img{width:108px;height:25px}
.hero-rotating-label{width:max-content;transition:width .52s cubic-bezier(.22,.61,.36,1)}
.hero-rotating-viewport{position:relative;display:inline-block;width:auto;height:22px;overflow:hidden;vertical-align:middle;transition:width .52s cubic-bezier(.22,.61,.36,1)}
.hero-rotating-text{position:absolute;left:0;top:0;display:block;white-space:nowrap;line-height:22px;opacity:1;transform:translateY(0);transition:opacity .5s ease,transform .5s cubic-bezier(.22,.61,.36,1)}
.hero-rotating-text.is-leaving{opacity:0;transform:translateY(-10px)}
.hero-rotating-text.is-entering{opacity:0;transform:translateY(10px)}
.hero-rotating-text.is-active{opacity:1;transform:translateY(0)}
@media(max-width:700px){.brand-marquee{padding:75px 0!important}.brand-marquee-group{gap:42px;padding-right:42px}.brand-logo{font-size:16px}.brand-logo img{width:22px;height:22px}}


/* Contextual icon transition inside the rotating hero label */
.hero-rotating-icon{position:relative;overflow:hidden;transition:opacity .34s ease,transform .34s cubic-bezier(.22,.61,.36,1)}
.hero-rotating-icon.is-leaving{opacity:0;transform:translateY(-6px) scale(.92)}
.hero-rotating-icon.is-entering{opacity:0;transform:translateY(6px) scale(.92)}
.hero-rotating-icon svg{transition:opacity .34s ease,transform .34s cubic-bezier(.22,.61,.36,1)}

/* AISystems per-character split-flap button animation */
.btn[data-flap-ready="true"]{
  overflow:hidden;
}
.btn-flap-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:1.2em;
  line-height:1.2;
  white-space:nowrap;
  pointer-events:none;
  perspective:520px;
}
.btn-flap-char{
  --flap-delay:calc(var(--char-index) * 24ms);
  position:relative;
  display:inline-grid;
  place-items:center;
  height:1.2em;
  overflow:hidden;
  transform-style:preserve-3d;
}
.btn-flap-char--space{
  width:.34em;
  flex:0 0 .34em;
}
.btn-flap-char__face{
  grid-area:1/1;
  display:block;
  min-width:.01em;
  white-space:pre;
  backface-visibility:hidden;
  transform-origin:50% 50%;
  will-change:transform,opacity,filter;
  transition:
    transform .5s cubic-bezier(.2,.72,.2,1),
    opacity .22s ease,
    filter .32s ease;
  transition-delay:var(--flap-delay);
}
.btn-flap-char__face--current{
  transform:translateY(0) rotateX(0deg);
  opacity:1;
  filter:blur(0);
}
.btn-flap-char__face--next{
  position:absolute;
  inset:0;
  transform:translateY(115%) rotateX(78deg);
  opacity:0;
  filter:blur(1.6px);
}
.btn:hover .btn-flap-char__face--current,
.btn:focus-visible .btn-flap-char__face--current{
  transform:translateY(-115%) rotateX(-78deg);
  opacity:0;
  filter:blur(1.6px);
}
.btn:hover .btn-flap-char__face--next,
.btn:focus-visible .btn-flap-char__face--next{
  transform:translateY(0) rotateX(0deg);
  opacity:1;
  filter:blur(0);
}
.btn:hover .btn-flap-char:nth-child(3n) .btn-flap-char__face,
.btn:focus-visible .btn-flap-char:nth-child(3n) .btn-flap-char__face{
  transition-delay:calc(var(--flap-delay) + 18ms);
}
@media(prefers-reduced-motion:reduce){
  .btn-flap-char__face{transition:none!important;filter:none!important}
  .btn-flap-char__face--next{display:none}
  .btn:hover .btn-flap-char__face--current,
  .btn:focus-visible .btn-flap-char__face--current{transform:none;opacity:1}
}


/* Hero lead: fixed three-line desktop composition */
.hero-lead-three{max-width:980px!important}
.hero-lead-three>span{display:block;white-space:nowrap}

/* Faster split-flap wave and uppercase button labels */
.btn[data-flap-ready="true"]{text-transform:uppercase}
.btn-flap-char{--flap-delay:calc(var(--char-index) * 16ms)}
.btn-flap-char__face{transition-duration:.34s,.16s,.22s}
.btn:hover .btn-flap-char:nth-child(3n) .btn-flap-char__face,
.btn:focus-visible .btn-flap-char:nth-child(3n) .btn-flap-char__face{transition-delay:calc(var(--flap-delay) + 10ms)}
@media(max-width:700px){
  .hero-lead-three>span{display:inline;white-space:normal}
  .hero-lead-three>span+span::before{content:' '}
}

/* Agency pipeline motion: editable SVG packets, output states and concentric AI core. */
.hero-pipeline-native{
  --flow-loader-color:#242424;
  --flow-processing-load:.07;
  --flow-loader-dot-opacity:.423;
  --flow-success:#169958;
  --flow-success-line:#20bb6b;
  --flow-success-bg:#f5f7f7;
}
.flow-output-packet{will-change:opacity}
.flow-data-chip-success{
  --chip-accent:var(--flow-success);
  --flow-chip-bg:var(--flow-success-bg);
  --flow-chip-border:var(--flow-success-line);
  --flow-chip-text:#3d5d4e;
}
.flow-data-chip-success .flow-data-chip-shell{stroke-width:1.05}
.flow-output-packet[data-static-hidden="true"]{opacity:0}
.flow-concentric-loader{color:var(--flow-loader-color)}
.flow-loader-track{
  fill:none;
  stroke:currentColor;
  stroke-width:.85;
  opacity:.16;
  vector-effect:non-scaling-stroke;
  animation:flow-loader-track-pulse 3.2s ease-in-out infinite;
}
.flow-loader-dot{
  fill:currentColor;
  opacity:var(--flow-loader-dot-opacity,.423);
}
.flow-loader-center{fill:currentColor}
.flow-loader-ring,.flow-loader-dots,.flow-loader-center{
  transform-box:fill-box;
  transform-origin:center;
  will-change:transform,opacity;
}
.flow-loader-ring{animation:flow-loader-pulse 3.2s ease-in-out infinite}
.flow-loader-ring-1{animation-delay:0s}
.flow-loader-ring-2{animation-delay:-.8s}
.flow-loader-ring-3{animation-delay:-1.6s}
.flow-loader-ring-4{animation-delay:-2.4s}
.flow-loader-ring-1 .flow-loader-track{animation-delay:0s}
.flow-loader-ring-2 .flow-loader-track{animation-delay:-.8s}
.flow-loader-ring-3 .flow-loader-track{animation-delay:-1.6s}
.flow-loader-ring-4 .flow-loader-track{animation-delay:-2.4s}
.flow-concentric-loader .flow-loader-dots{animation:none}
.flow-loader-center{animation:flow-loader-center-pulse 2.4s ease-in-out infinite}
.hero-pipeline-native.is-flow-paused .flow-loader-ring,
.hero-pipeline-native.is-flow-paused .flow-loader-track,
.hero-pipeline-native.is-flow-paused .flow-loader-dots,
.hero-pipeline-native.is-flow-paused .flow-loader-center{animation-play-state:paused}
@keyframes flow-loader-pulse{0%,100%{transform:scale(.96)}50%{transform:scale(1.04)}}
@keyframes flow-loader-track-pulse{0%,100%{opacity:.12}50%{opacity:.42}}
@keyframes flow-loader-center-pulse{0%,100%{opacity:.68;transform:scale(.72)}50%{opacity:1;transform:scale(1.35)}}
@media(prefers-reduced-motion:reduce){
  .flow-loader-ring,.flow-loader-track,.flow-loader-dots,.flow-loader-center{animation:none!important;will-change:auto}
  .flow-loader-ring{transform:none}
  .flow-loader-center{opacity:1;transform:none}
}


/* Stable pipeline pill vertical alignment */
.flow-pill,
.flow-pill-wrap,
.flow-pill-chip,
.flow-pill-label,
.flow-pill-icon{
  animation:none!important;
  transition:none!important;
}
.flow-pill-wrap{
  height:45px;
  min-height:45px;
  max-height:45px;
  line-height:45px;
  overflow:visible;
}
.flow-pill-chip{
  height:45px;
  min-height:45px;
  max-height:45px;
  padding-top:0;
  padding-bottom:0;
  line-height:45px;
  vertical-align:top;
  font-synthesis:none;
  contain:layout paint;
}
.flow-pill-label{
  display:flex;
  align-items:center;
  justify-content:center;
  height:45px;
  min-height:45px;
  line-height:1;
  padding:0;
  margin:0;
  transform:translateY(.5px);
}
.flow-pill-icon{
  align-self:center;
  margin-top:0;
  margin-bottom:0;
}


/* Global first-render stability */
.announce-closed #announce{display:none!important}
#announce{contain:layout paint}
.home-hero-copy,.hero-pipeline,.brand-marquee,.home-process-showcase{overflow-anchor:none}
.home-process-showcase .feature-card,
.home-process-showcase .visual-zone,
.brand-marquee,
.hero-pipeline-native{contain:layout paint}
@media(prefers-reduced-motion:no-preference){
  html:not(.fonts-ready) .home-process-showcase *,
  html:not(.fonts-ready) .brand-marquee *{animation-play-state:paused!important}
}

/* Stable static home hero description */
.home-hero .hero-lead-static{max-width:900px;text-wrap:balance}
.home-hero .hero-lead-static>span{display:block}
@media(max-width:760px){
  .home-hero .hero-lead-static>span{display:inline}
  .home-hero .hero-lead-static>span+span::before{content:' '}
}


/* Prevent static hero-flow flash before motion mounts */
.hero-pipeline-native:not(.is-flow-motion) .flow-data-packets,
.hero-pipeline-native:not(.is-flow-motion) .flow-output-packets,
.hero-pipeline-native:not(.is-flow-motion) .flow-tracer{
  opacity:0!important;
  visibility:hidden!important;
}
.hero-pipeline-native .flow-loader-ring,
.hero-pipeline-native .flow-loader-track,
.hero-pipeline-native .flow-loader-dots,
.hero-pipeline-native .flow-loader-center{
  animation-play-state:running;
}


/* Hide hero flow until its first motion frame is prepared */
.hero-pipeline-native .agency-flow-svg{
  opacity:0;
  visibility:hidden;
}
.hero-pipeline-native.is-flow-ready .agency-flow-svg{
  opacity:1;
  visibility:visible;
}


/* Final hero-flow stability and long-pill fit */
.flow-pill[data-node="source-internal"] .flow-pill-chip{
  max-width:100%;
  padding-left:12px;
  padding-right:12px;
  font-size:14px;
  letter-spacing:.035em;
}
.flow-pill[data-node="source-internal"] .flow-pill-icon{
  flex:0 0 auto;
}
.flow-pill[data-node="source-internal"] .flow-pill-label{
  min-width:0;
  white-space:nowrap;
}
.hero-pipeline-native .agency-flow-svg{
  opacity:0;
  visibility:hidden;
  transform:translateY(8px) scale(.995);
  transform-origin:50% 50%;
  transition:opacity .38s ease,transform .38s cubic-bezier(.22,.61,.36,1),visibility 0s linear .38s;
  will-change:opacity,transform;
}
.hero-pipeline-native.is-flow-ready .agency-flow-svg{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
  transition-delay:0s;
}
@media(prefers-reduced-motion:reduce){
  .hero-pipeline-native .agency-flow-svg{transform:none;transition:opacity .16s ease,visibility 0s linear .16s}
}

/* AI Business Systems hero refinement and service enquiry modal. */
.decision-hero{min-height:960px}
.decision-hero-center{min-height:960px}
.decision-hero .eyebrow.accent{color:#4f8cff}
.decision-hero h1 span,.decision-hero .lead span{display:block}
.decision-hero h1{max-width:1080px}
.decision-hero .lead{max-width:760px}
.process-modal[hidden]{display:none}
.process-modal{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;padding:24px}
.process-modal-backdrop{position:absolute;inset:0;background:rgba(8,12,20,.76);backdrop-filter:blur(10px)}
.process-modal-card{position:relative;width:min(760px,100%);max-height:calc(100vh - 48px);overflow:auto;padding:38px;border:1px solid rgba(255,255,255,.12);border-radius:28px;background:#f7f8fa;color:var(--foreground);box-shadow:0 24px 90px rgba(0,0,0,.34)}
.process-modal-card h2{max-width:650px;margin:0;font-size:clamp(30px,4vw,48px);line-height:1.03;letter-spacing:-.045em}
.process-modal-intro{max-width:650px;margin:16px 0 28px;color:var(--ink2);font-size:15.5px;line-height:1.6}
.process-modal-close{position:absolute;top:18px;right:18px;width:40px;height:40px;border:1px solid var(--border);border-radius:50%;background:#fff;color:var(--foreground);font-size:27px;line-height:1;cursor:pointer}
.process-modal-form{max-width:none}
.process-select{position:relative}
.process-select-trigger{width:100%;min-height:52px;display:flex;align-items:center;justify-content:space-between;gap:14px;padding:13px 16px;border:1px solid var(--input);border-radius:var(--radius-control);background:var(--surface);color:var(--muted-foreground);font:400 15.5px/1.5 'Montserrat',sans-serif;text-align:left;cursor:pointer;transition:border-color .2s ease,box-shadow .2s ease,background .2s ease}
.process-select-trigger:hover{border-color:rgba(12,102,228,.42);background:#fff}
.process-select-trigger:focus-visible,.process-select.is-open .process-select-trigger{outline:none;border-color:var(--ring);box-shadow:0 0 0 3px rgba(12,102,228,.12)}
.process-select.has-value .process-select-trigger{color:var(--foreground)}
.process-select-trigger[aria-invalid="true"]{border-color:#c63f3f;box-shadow:0 0 0 3px rgba(198,63,63,.1)}
.process-select-chevron{width:9px;height:9px;flex:0 0 9px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg) translateY(-2px);transition:transform .2s ease}
.process-select.is-open .process-select-chevron{transform:rotate(225deg) translate(-2px,-2px)}
.process-select-menu{position:absolute;z-index:12;top:calc(100% + 8px);left:0;right:0;padding:7px;border:1px solid rgba(20,31,50,.12);border-radius:16px;background:#fff;box-shadow:0 18px 50px rgba(20,31,50,.16);overflow:hidden}
.process-select-menu button{display:flex;width:100%;padding:11px 12px;border:0;border-radius:10px;background:transparent;color:var(--foreground);font:500 14px/1.35 'Montserrat',sans-serif;text-align:left;cursor:pointer;transition:background .15s ease,color .15s ease}
.process-select-menu button:hover,.process-select-menu button:focus-visible{outline:none;background:var(--accent-soft);color:var(--accent-foreground)}
.process-select-menu button[aria-selected="true"]{background:#edf4ff;color:#0c66e4}
.process-select-error{display:block;margin-top:7px;color:#a62f2f;font-size:12px}
.process-select-error[hidden]{display:none}
body.process-modal-open{overflow:hidden}
@media (max-width:900px){
  .decision-hero,.decision-hero-center{min-height:880px}
}
@media (max-width:700px){
  .decision-hero,.decision-hero-center{min-height:820px}
  .decision-hero h1 span,.decision-hero .lead span{display:inline}
  .decision-hero h1 span+span::before,.decision-hero .lead span+span::before{content:' '}
  .process-modal{padding:10px;align-items:end}
  .process-modal-card{max-height:calc(100vh - 20px);padding:28px 20px 24px;border-radius:24px}
  .process-modal-close{top:12px;right:12px}
  .process-modal-card h2{padding-right:36px;font-size:32px}
}

/* Homepage: integrated AI Business Systems visual. */
.system-bento-core{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(300px,.96fr);
  gap:0;
  padding:0;
  background:#031a35;
  isolation:isolate;
}
.system-bento-core::before,
.system-bento-core::after{
  content:none;
  display:none;
}
.system-bento-core-copy{
  position:relative;
  z-index:2;
  display:flex;
  min-width:0;
  flex-direction:column;
  padding:32px 0 32px 32px;
}
.system-bento-core-visual{
  position:relative;
  z-index:1;
  min-width:0;
  min-height:470px;
  overflow:hidden;
}
.system-bento-core-visual::before{
  content:"";
  position:absolute;
  z-index:2;
  inset:0;
  background:linear-gradient(90deg,#031a35 0%,rgba(3,26,53,.82) 10%,rgba(3,26,53,.18) 28%,rgba(3,26,53,0) 48%);
  pointer-events:none;
}
.system-bento-core-visual img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:53% 50%;
  filter:saturate(.98) contrast(1.01);
  transform:scale(1.015);
}
.system-bento-core .system-bento-body{margin-top:62px}
.system-bento-core .system-bento-link{margin-top:auto}
@media (max-width:1050px){
  .system-bento-core{grid-template-columns:minmax(0,1fr) minmax(260px,.82fr)}
  .system-bento-core-copy{padding-left:28px}
}
@media (max-width:760px){
  .system-bento-core{display:flex;min-height:560px;padding:0;gap:0;background:#031a35}
  .system-bento-core-copy{z-index:3;min-height:560px;padding:24px}
  .system-bento-core-visual{position:absolute;inset:0;min-height:0;opacity:.52}
  .system-bento-core-visual::before{background:linear-gradient(180deg,rgba(3,26,53,.42),rgba(3,26,53,.92) 70%,#031a35)}
  .system-bento-core-visual img{object-position:58% 44%;transform:scale(1.04)}
  .system-bento-core .system-bento-body{margin-top:38px}
}
.system-bento-core-visual-empty{
  background:
    radial-gradient(circle at 48% 48%,rgba(36,118,255,.28),transparent 28%),
    linear-gradient(rgba(51,130,218,.09) 1px,transparent 1px),
    linear-gradient(90deg,rgba(51,130,218,.09) 1px,transparent 1px),
    #031a36;
  background-size:auto,42px 42px,42px 42px,auto;
}

/* Reusable split section heading: contained editorial columns. */
.home-section .sec-head.sec-head-split{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  column-gap:14px;
  row-gap:18px;
  max-width:none;
  align-items:end;
}
.home-section .sec-head.sec-head-split .eyebrow{
  grid-column:1/-1;
  margin-bottom:0;
}
.home-section .sec-head.sec-head-split h2{
  grid-column:1 / span 8;
  grid-row:2;
  min-width:0;
  width:100%;
  max-width:none;
  margin:0;
  font-size:clamp(34px,3.32vw,51px);
  line-height:1.01;
  letter-spacing:-.045em;
}
.home-section .sec-head.sec-head-split .sec-lead{
  grid-column:9 / -1;
  grid-row:2;
  min-width:0;
  width:100%;
  max-width:38ch;
  margin:0;
  padding:0 0 4px;
  align-self:end;
  justify-self:start;
  overflow-wrap:break-word;
  font-size:16px;
  line-height:1.6;
  color:var(--muted-foreground);
}
.sec-head-two-lines span{display:block;white-space:normal}
.why-grid .sec-head,.control-grid .sec-head{display:block;max-width:none;margin:0}
.why-grid .sec-head h2,.control-grid .sec-head h2{max-width:100%;font-size:clamp(34px,3.32vw,51px);line-height:1.01;letter-spacing:-.045em}
.why-grid .sec-head .eyebrow,.control-grid .sec-head .eyebrow{margin-bottom:18px}
.why-grid .sec-head .sec-lead,.control-grid .sec-head .sec-lead{max-width:620px;margin-top:18px;padding:0;font-size:16px;line-height:1.6}
@media (max-width:900px){
  .home-section .sec-head.sec-head-split{grid-template-columns:1fr;row-gap:14px}
  .home-section .sec-head.sec-head-split .eyebrow,.home-section .sec-head.sec-head-split h2,.home-section .sec-head.sec-head-split .sec-lead{grid-column:1/-1;grid-row:auto}
  .home-section .sec-head.sec-head-split h2,.why-grid .sec-head h2,.control-grid .sec-head h2{font-size:clamp(31px,5.6vw,43px)}
  .home-section .sec-head.sec-head-split .sec-lead{padding:0;max-width:48ch}
}
@media (max-width:560px){
  .home-section .sec-head.sec-head-split h2,.why-grid .sec-head h2,.control-grid .sec-head h2{font-size:29px;line-height:1.04}
  .sec-head-two-lines span{display:inline;white-space:normal}
  .sec-head-two-lines span+span::before{content:' '}
}

/* Readable content typography: card copy stays distinct from labels and metadata. */
:root{--content-card-size:16px;--content-support-size:15px}
.card p,
.tier p,
.system-bento-body p,
.home-summary p,
.home-summary-copy p,
.home-signal-primary p,
.problem-card p,
.process-method-card p,
.why-list p,
.proof-card p{
  font-size:var(--content-card-size);
}
.mini-list li,
.tier li,
.link-d{
  font-size:var(--content-support-size);
  line-height:1.5;
}
.row dd,
.steps p,
.check-list li,
.faq-a p,
.sec-head-split .sec-lead{
  font-size:var(--content-card-size);
}
.flow-cap{font-size:15px;line-height:1.55}
.home-hero-compare p,
.home-hero-compare strong{font-size:14px;line-height:1.45}

/* Flat marketing surfaces: section contrast replaces borders, gradients and hover elevation. */
:root{--card-surface-soft:#f7f8fa;--card-surface-white:#fff}
.sec:not(.sec-alt),
.home-summary,
.home-process-showcase,
.lab-updates{--section-card-fill:var(--card-surface-soft)}
.sec.sec-alt{--section-card-fill:var(--card-surface-white)}
.sec:not(.sec-alt):not(.home-proof):not(.faq-section),
.home-section.sec:not(.sec-alt):not(.home-proof):not(.faq-section),
.home-summary,
.home-process-showcase,
.lab-updates{
  background-color:#fff!important;
  background-image:none!important;
}
.sec.sec-alt,
.home-section.sec.sec-alt{
  background-color:#f7f8fa!important;
  background-image:none!important;
}
:where(
  .card,
  .link-card,
  .tier,
  .ba-col,
  .lab-feed-card,
  .home-hero-panel,
  .home-system .rows,
  .system-bento-card,
  .problem-card,
  .process-method-card,
  .proof-card,
  .home-summary-card,
  .home-position blockquote
){
  border:0!important;
  background-color:var(--section-card-fill,var(--card-surface-soft))!important;
  background-image:none!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  transition:none!important;
}
:where(
  a.card,
  .link-card,
  .system-bento-card,
  .problem-card,
  .process-method-card,
  .proof-card
):hover{
  border:0!important;
  background-color:var(--section-card-fill,var(--card-surface-soft))!important;
  color:var(--foreground)!important;
  box-shadow:none!important;
  transform:none!important;
}
:where(
  a.card,
  .link-card,
  .system-bento-card,
  .problem-card,
  .process-method-card,
  .proof-card
):focus-visible{
  outline:2px solid var(--ring);
  outline-offset:3px;
  background-color:var(--section-card-fill,var(--card-surface-soft))!important;
  transform:none!important;
}
a.card::before,
.link-card::before,
.system-bento-card::after,
.home-summary-grid>div::after,
.home-summary-grid>article::after{
  content:none!important;
  display:none!important;
}
.link-card:hover .link-arr,
.system-bento-card:hover .system-bento-link>span{
  transform:none!important;
}
.system-bento-card:hover .system-bento-link>span{background:rgba(12,102,228,.08)!important}
.visual-placeholder,
.system-bento-web .visual-placeholder,
.system-bento-trust .visual-placeholder{
  border:0!important;
  background-color:transparent!important;
  background-image:none!important;
}
.home-summary-visual,
.home-summary-run,
.home-summary-audit,
.home-summary-build{
  border:0!important;
  background-color:transparent!important;
}

/* Featured marketing cards use the same neutral surface and dark readable copy. */
:where(.card-big,.tier-featured,.ba-after,.proof-card-main,.system-bento-core){
  color:var(--foreground)!important;
}
.card-big p,
.card-big .mini-list li,
.tier-featured p,
.tier-featured li,
.ba-after li,
.proof-card-main p,
.system-bento-core .system-bento-body p{
  color:var(--muted-foreground)!important;
}
.card-big .card-k,
.tier-featured .tier-tag,
.proof-card-main b,
.system-bento-core .card-k,
.system-bento-core .system-bento-link{
  color:var(--accent)!important;
}
.tier-featured .btn{border-color:var(--foreground)!important;color:var(--foreground)!important}
.system-bento-core .system-bento-body h3{color:var(--foreground)!important}
.system-bento-core .system-bento-index{
  border:0!important;
  background:#fff!important;
  color:var(--muted-foreground)!important;
}
.system-bento-core .system-bento-flow span{
  border:0!important;
  background:#fff!important;
  color:var(--muted-foreground)!important;
}
.system-bento-core .system-bento-flow i{color:var(--accent)!important}
.system-bento-core .system-bento-link>span{background:#fff!important}
.system-bento-core::before,
.system-bento-core::after,
.system-bento-core-visual::before{
  content:none!important;
  display:none!important;
}
.system-bento-core-visual-empty{
  background-color:var(--section-card-fill,var(--card-surface-soft))!important;
  background-image:none!important;
}
@media(max-width:760px){.system-bento-core-visual{opacity:.16}}

/* Homepage AI Business Systems card: keep one continuous image-matched surface. */
.home-section .system-bento-core{
  background:#031a35!important;
  color:#f8faff!important;
}
.home-section .system-bento-core-copy{
  background:#031a35;
}
.home-section .system-bento-core .system-bento-body h3{
  color:#f8faff!important;
}
.home-section .system-bento-core .system-bento-body p{
  color:#b7c8df!important;
}
.home-section .system-bento-core .card-k,
.home-section .system-bento-core .system-bento-link{
  color:#8fb7ff!important;
}
.home-section .system-bento-core .system-bento-flow span{
  border:1px solid rgba(255,255,255,.13)!important;
  background:rgba(255,255,255,.055)!important;
  color:#d2ddec!important;
}
.home-section .system-bento-core .system-bento-flow i{
  color:#70a1ff!important;
}
.home-section .system-bento-core-visual::before{
  content:""!important;
  display:block!important;
  position:absolute;
  z-index:2;
  inset:0;
  background:linear-gradient(90deg,#031a35 0%,rgba(3,26,53,.78) 10%,rgba(3,26,53,.12) 30%,rgba(3,26,53,0) 48%)!important;
  pointer-events:none;
}
@media(max-width:760px){
  .home-section .system-bento-core-visual{opacity:.52}
  .home-section .system-bento-core-visual::before{
    background:linear-gradient(180deg,rgba(3,26,53,.36),rgba(3,26,53,.93) 70%,#031a35)!important;
  }
}

/* Preserve authored card artwork across interaction states. */
:where(.system-bento-card,.card,.link-card,.problem-card,.process-method-card,.proof-card):is(:hover,:focus-visible){
  background-repeat:var(--card-background-repeat,initial);
  background-position:var(--card-background-position,initial);
  background-size:var(--card-background-size,initial);
}
.system-bento-extensions{
  --card-background-repeat:no-repeat,no-repeat;
  --card-background-position:center,bottom center;
  --card-background-size:100% 100%,cover;
}

/* Reusable card pattern: full-bleed media fills the entire lower card area. */
.system-bento-card--media-full{--media-card-inline:26px;--media-card-bottom:26px;background:#f7f8fa;transition:none}
.system-bento-card--media-full::after{display:none}
.system-bento-card--media-full:hover{transform:none;border-color:rgba(23,32,51,.11);box-shadow:none}
.card-media-full-bleed{position:relative;z-index:1;flex:0 0 auto;aspect-ratio:4/3;margin:22px calc(var(--media-card-inline) * -1) calc(var(--media-card-bottom) * -1);overflow:hidden;background:transparent}
.card-media-full-bleed img{position:relative;z-index:1;display:block;width:100%;height:100%;object-fit:contain;object-position:center bottom;background:transparent;filter:none;transform:none;transition:none}
.system-card-art-crm img,.system-card-art-web img{object-position:center bottom}
.system-bento-card--media-full .system-bento-link{position:absolute;z-index:3;left:var(--media-card-inline);bottom:18px;margin:0;padding:0}
@media(max-width:760px){
  .system-bento-card--media-full{--media-card-inline:24px;--media-card-bottom:24px}
  .card-media-full-bleed{margin-top:20px}
  .system-bento-card--media-full .system-bento-link{bottom:17px}
}


/* User-provided homepage artwork must render without decorative overlays. */
.home-section .system-bento-core-visual::before{
  content:none!important;
  display:none!important;
  background:none!important;
}
.home-section .system-bento-core-visual{
  opacity:1!important;
}
.home-section .system-bento-control.system-bento-card--media-full{
  background:#f7f8fa!important;
  background-image:none!important;
}
.home-section .system-bento-control .card-media-full-bleed,
.home-section .system-bento-control .card-media-full-bleed img{
  background:transparent!important;
  background-image:none!important;
}


/* AI Business Systems Feature Card: restore the original image-to-copy blend. */
#ai-business-systems-feature-card .system-bento-core-visual::before{
  content:""!important;
  display:block!important;
  position:absolute;
  z-index:2;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg,
    #031a35 0%,
    rgba(3,26,53,.98) 12%,
    rgba(3,26,53,.86) 26%,
    rgba(3,26,53,.52) 44%,
    rgba(3,26,53,.18) 62%,
    rgba(3,26,53,0) 82%
  )!important;
}
@media(max-width:760px){
  #ai-business-systems-feature-card .system-bento-core-visual::before{
    background:linear-gradient(180deg,rgba(3,26,53,.24),rgba(3,26,53,.9) 72%,#031a35)!important;
  }
}


/* Homepage Подробнее buttons — unified card CTA. */
.home-section .system-bento-link{
  width:max-content;
  min-height:38px;
  padding:0 14px!important;
  gap:9px;
  border:1px solid rgba(12,102,228,.22);
  border-radius:999px;
  background:rgba(255,255,255,.88);
  color:#0c66e4!important;
  font-size:12px;
  font-weight:650;
  line-height:1;
  box-shadow:0 1px 0 rgba(23,32,51,.04);
  transition:border-color .18s ease,background-color .18s ease,color .18s ease;
}
.home-section .system-bento-link::after{
  content:"→";
  display:inline-block;
  font-size:14px;
  line-height:1;
  transform:translateX(0);
  transition:transform .18s ease;
}
.home-section .system-bento-card:hover .system-bento-link,
.home-section .system-bento-card:focus-visible .system-bento-link{
  border-color:rgba(12,102,228,.42);
  background:#fff;
}
.home-section .system-bento-card:hover .system-bento-link::after,
.home-section .system-bento-card:focus-visible .system-bento-link::after{
  transform:translateX(3px);
}
#ai-business-systems-feature-card .system-bento-link{
  border-color:rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);
  color:#b9d0ff!important;
  box-shadow:none;
}
#ai-business-systems-feature-card:hover .system-bento-link,
#ai-business-systems-feature-card:focus-visible .system-bento-link{
  border-color:rgba(255,255,255,.34);
  background:rgba(255,255,255,.12);
}
.system-bento-card--media-full .system-bento-link{
  bottom:18px;
}
@media(max-width:760px){
  .home-section .system-bento-link{
    min-height:36px;
    padding:0 13px!important;
    font-size:11.5px;
  }
}
@media(prefers-reduced-motion:reduce){
  .home-section .system-bento-link,
  .home-section .system-bento-link::after{
    transition:none;
  }
  .home-section .system-bento-card:hover .system-bento-link::after,
  .home-section .system-bento-card:focus-visible .system-bento-link::after{
    transform:none;
  }
}

/* Homepage Web Platforms: exact user image, clean clickable card */
.home-section .system-bento-web.system-bento-card--media-full{
  overflow:hidden;
  background:var(--background-subtle)!important;
  box-shadow:none!important;
  isolation:isolate;
}
.home-section .system-bento-web.system-bento-card--media-full::before,
.home-section .system-bento-web.system-bento-card--media-full::after{display:none!important}
.home-section .system-bento-web .card-media-full-bleed{
  position:relative;
  z-index:0;
  margin-top:18px;
  background:transparent!important;
  pointer-events:none;
}
.home-section .system-bento-web .card-media-full-bleed img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  background:transparent!important;
  filter:none!important;
  box-shadow:none!important;
  pointer-events:none;
}
.home-section .system-bento-web>.system-bento-top,
.home-section .system-bento-web>.system-bento-body,
.home-section .system-bento-web>.system-bento-link{position:relative;z-index:2}
.home-section .system-bento-web>.system-bento-link{pointer-events:none}


/* Home problem cards: oversized clipped numbering. */
.home-problems .problem-card{
  position:relative;
  overflow:hidden;
}
.home-problems .problem-card>span{
  display:block;
  width:max-content;
  height:23px;
  overflow:hidden;
  color:#0c66e4;
  font-family:var(--disp);
  font-size:42px;
  font-weight:650;
  line-height:1;
  letter-spacing:-.055em;
  transform:translateY(-13px);
}
.home-problems .problem-card h3{
  margin:18px 0 12px;
}
@media(max-width:760px){
  .home-problems .problem-card>span{
    height:21px;
    font-size:38px;
    transform:translateY(-12px);
  }
  .home-problems .problem-card h3{
    margin-top:16px;
  }
}

/* Homepage control: editorial list with a dedicated visual column. */
.home-control .control-grid{
  display:grid;
  grid-template-columns:minmax(280px,.82fr) minmax(420px,1.16fr) minmax(300px,.82fr);
  gap:clamp(36px,4.2vw,68px);
  align-items:stretch;
}
.home-control .control-copy{
  display:flex;
  min-width:0;
  flex-direction:column;
  margin:0;
}
.home-control .control-copy h2{
  max-width:9.6ch;
  margin:0;
  font-size:clamp(42px,3.45vw,58px);
  line-height:.98;
  letter-spacing:-.055em;
  text-wrap:balance;
}
.home-control .control-copy .sec-lead{
  max-width:25ch;
  margin-top:auto;
  padding-top:42px;
  font-size:16px;
  line-height:1.6;
}
.control-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-content:start;
  min-width:0;
  margin:0;
  padding:0;
  list-style:none;
}
.control-list li{
  position:relative;
  display:flex;
  min-height:80px;
  align-items:flex-start;
  padding:20px 18px 20px 38px;
  border-bottom:1px solid var(--line);
  color:var(--ink2);
  font-size:16px;
  line-height:1.45;
}
.control-list li:nth-child(odd){padding-left:30px;padding-right:28px}
.control-list li:nth-child(even){border-left:1px solid var(--line);padding-left:48px}
.control-list li::before{
  content:"✓";
  position:absolute;
  top:20px;
  left:10px;
  color:var(--ok);
  font:500 15px/1 var(--mono);
}
.control-list li:nth-child(even)::before{left:20px}
.control-visual{
  position:relative;
  min-width:0;
  min-height:420px;
  overflow:hidden;
  border-radius:24px;
  background:
    radial-gradient(circle at 58% 43%,rgba(49,183,255,.24),transparent 20%),
    radial-gradient(circle at 50% 50%,#152636 0,#0d1720 46%,#081015 100%);
  color:#fff;
  isolation:isolate;
}
.control-visual::after{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 48%,rgba(3,8,12,.86));
  content:"";
  z-index:1;
}
.control-visual-grid{
  position:absolute;
  inset:-20%;
  background-image:linear-gradient(rgba(86,177,220,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(86,177,220,.1) 1px,transparent 1px);
  background-size:32px 32px;
  transform:perspective(520px) rotateX(64deg) translateY(18%);
  transform-origin:center;
}
.control-orbit,.control-core{position:absolute;top:43%;left:55%;border-radius:50%;transform:translate(-50%,-50%)}
.control-orbit{border:1px solid rgba(100,203,255,.42);box-shadow:0 0 30px rgba(31,157,222,.12) inset}
.control-orbit-outer{width:230px;height:230px;border-width:18px;transform:translate(-50%,-50%) rotate(-10deg);box-shadow:0 0 0 1px rgba(255,255,255,.05),0 0 48px rgba(29,158,221,.18)}
.control-orbit-inner{width:142px;height:142px;border:10px solid rgba(63,194,255,.42);box-shadow:0 0 34px rgba(28,177,244,.25)}
.control-core{
  display:grid;
  width:84px;
  height:84px;
  place-items:center;
  border:1px solid rgba(168,229,255,.72);
  background:linear-gradient(145deg,rgba(39,190,255,.92),rgba(6,64,91,.96));
  box-shadow:0 0 40px rgba(43,196,255,.48);
  font-size:34px;
  z-index:2;
}
.control-visual-copy{position:absolute;right:24px;bottom:24px;left:24px;z-index:3}
.control-visual-copy small{display:block;margin-bottom:8px;color:#75cfff;font:500 10px/1 var(--mono);letter-spacing:.11em;text-transform:uppercase}
.control-visual-copy strong{font-size:22px;line-height:1.08;letter-spacing:-.035em}
@media(max-width:1180px){
  .home-control .control-grid{grid-template-columns:minmax(280px,.9fr) minmax(420px,1.1fr)}
  .control-visual{grid-column:1/-1;min-height:360px}
  .home-control .control-copy .sec-lead{margin-top:32px;padding-top:0}
}
@media(max-width:900px){
  .home-control .control-grid{grid-template-columns:1fr;gap:34px}
  .home-control .control-copy h2{max-width:14ch;font-size:clamp(38px,7vw,54px)}
  .home-control .control-copy .sec-lead{max-width:44ch;margin-top:20px}
  .control-visual{grid-column:auto;min-height:340px}
}
@media(max-width:560px){
  .home-control .control-grid{gap:28px}
  .home-control .control-copy h2{max-width:none;font-size:34px;line-height:1.02}
  .control-list{grid-template-columns:1fr}
  .control-list li,.control-list li:nth-child(odd),.control-list li:nth-child(even){min-height:0;padding:17px 12px 17px 34px;border-left:0}
  .control-list li::before,.control-list li:nth-child(even)::before{top:18px;left:6px}
  .control-visual{min-height:300px;border-radius:20px}
  .control-orbit,.control-core{left:58%}
  .control-orbit-outer{width:190px;height:190px}
  .control-orbit-inner{width:118px;height:118px}
  .control-core{width:68px;height:68px;font-size:28px}
  .control-visual-copy{right:20px;bottom:20px;left:20px}
}

/* ---------- home control / solar-inspired expertise layout ---------- */
.home-control{background:#fff!important;border-top:1px solid rgba(23,32,51,.06)}
.home-control>.container{display:block}
.control-heading{margin-bottom:54px}
.control-heading .eyebrow{margin-bottom:12px;color:#69707b;font-size:12px;letter-spacing:0;text-transform:uppercase}
.control-heading h2{max-width:920px;margin:0;font-size:clamp(44px,4.6vw,72px);line-height:1.02;letter-spacing:-.055em;font-weight:500}
.control-content{display:grid;grid-template-columns:minmax(0,2.05fr) minmax(320px,.95fr);gap:30px;align-items:stretch}
.control-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));column-gap:22px;list-style:none;margin:0;padding:0}
.control-list li{min-height:80px;padding:22px 0 18px;border-bottom:1px solid rgba(23,32,51,.2);font-size:clamp(18px,1.45vw,24px);line-height:1.25;letter-spacing:-.035em;color:#171b22}
.control-list li:nth-child(odd){margin-right:0}
.control-visual{position:relative;min-height:218px;height:100%;overflow:hidden;border-radius:17px;background:radial-gradient(circle at 68% 37%,rgba(14,144,205,.22),transparent 25%),linear-gradient(135deg,#101a20 0%,#07121b 100%);color:#fff}
.control-visual-grid{position:absolute;inset:0;background:linear-gradient(90deg,transparent 48%,rgba(74,163,212,.08) 49%,transparent 50%),linear-gradient(transparent 48%,rgba(74,163,212,.08) 49%,transparent 50%);background-size:34px 34px;opacity:.6;mask-image:linear-gradient(90deg,transparent 0,#000 35%,#000 100%)}
.control-radar{position:absolute;right:16px;top:50%;width:210px;height:210px;transform:translateY(-50%)}
.control-radar i{position:absolute;inset:0;border:16px solid rgba(66,162,218,.42);border-radius:50%}
.control-radar i:nth-child(2){inset:36px;border-width:10px;border-color:rgba(47,155,216,.52)}
.control-radar i:nth-child(3){inset:69px;border-width:7px;border-color:rgba(37,169,229,.68)}
.control-radar span{position:absolute;inset:79px;display:grid;place-items:center;border:1px solid rgba(133,219,255,.9);border-radius:50%;background:radial-gradient(circle at 38% 30%,#29b9ed,#056f9f 70%);box-shadow:0 0 24px rgba(35,183,241,.38);font:300 31px/1 var(--disp)}
.control-visual-copy{position:absolute;left:28px;bottom:24px;z-index:2}
.control-visual-copy small{display:block;margin-bottom:7px;font:600 9px/1 var(--mono);letter-spacing:.11em;text-transform:uppercase;color:#70d8ff}
.control-visual-copy strong{display:block;font:650 18px/1.12 var(--disp);letter-spacing:-.035em}
@media (max-width:980px){
  .control-content{grid-template-columns:1fr}
  .control-visual{min-height:260px}
  .control-radar{right:9%;width:230px;height:230px}
}
@media (max-width:640px){
  .control-heading{margin-bottom:34px}
  .control-heading h2{font-size:clamp(40px,11vw,58px)}
  .control-heading h2 br{display:none}
  .control-list{grid-template-columns:1fr}
  .control-list li{min-height:0;padding:18px 0 16px;font-size:20px}
  .control-visual{min-height:230px}
  .control-radar{right:-20px;width:190px;height:190px}
  .control-radar i{border-width:13px}
  .control-radar i:nth-child(2){inset:32px;border-width:8px}
  .control-radar i:nth-child(3){inset:60px;border-width:6px}
  .control-radar span{inset:70px;font-size:28px}
  .control-visual-copy{left:22px;bottom:20px}
}

/* interactive expertise states */
.control-list li{padding:0}
.control-item{position:relative;display:flex;width:100%;min-height:80px;align-items:center;justify-content:space-between;gap:20px;padding:20px 8px 18px 0;border:0;background:transparent;color:#171b22;text-align:left;font:inherit;cursor:pointer;transition:color .25s ease,padding .25s ease}
.control-item span{transition:transform .28s ease}
.control-arrow{flex:0 0 24px;width:24px;height:24px;opacity:0;transform:translate(-12px,8px) rotate(-8deg);transition:opacity .25s ease,transform .28s ease,color .25s ease}
.control-item:hover,.control-item:focus-visible{color:#126ea0;padding-left:12px}
.control-item:hover span,.control-item:focus-visible span{transform:translateX(4px)}
.control-item:hover .control-arrow,.control-item:focus-visible .control-arrow{opacity:1;transform:translate(0,0) rotate(0)}
.control-item:focus-visible{outline:2px solid #1b83bc;outline-offset:4px;border-radius:4px}
.control-visual{isolation:isolate;transition:background .42s ease}
.control-scene{position:absolute;inset:0;overflow:hidden}
.scene-orbit,.scene-core,.scene-node{position:absolute;display:block;transition:all .48s cubic-bezier(.2,.75,.2,1)}
.scene-orbit{border:1px solid rgba(116,211,255,.45);border-radius:50%}
.scene-orbit-a{width:225px;height:225px;right:16px;top:-4px;box-shadow:0 0 0 20px rgba(44,150,207,.08),0 0 0 46px rgba(44,150,207,.05)}
.scene-orbit-b{width:118px;height:118px;right:69px;top:49px;border-width:12px;border-color:rgba(49,168,226,.35)}
.scene-core{width:46px;height:46px;right:105px;top:85px;border-radius:50%;background:radial-gradient(circle at 35% 30%,#80ddff,#0879ac 70%);box-shadow:0 0 28px rgba(50,190,245,.55)}
.scene-node{width:11px;height:11px;border:2px solid #86ddff;border-radius:50%;background:#0a2535;box-shadow:0 0 12px rgba(92,207,255,.65)}
.scene-node-a{right:214px;top:51px}.scene-node-b{right:33px;top:99px}.scene-node-c{right:184px;top:181px}
.control-visual[data-control-visual="fallback"]{background:radial-gradient(circle at 69% 40%,rgba(94,76,222,.32),transparent 28%),linear-gradient(135deg,#151523,#090d18)}
.control-visual[data-control-visual="fallback"] .scene-orbit-a{border-radius:24px;transform:rotate(45deg) scale(.78);border-color:rgba(157,139,255,.5)}
.control-visual[data-control-visual="fallback"] .scene-orbit-b{transform:translate(-58px,28px) scale(.72);border-color:rgba(157,139,255,.45)}
.control-visual[data-control-visual="fallback"] .scene-core{border-radius:12px;transform:rotate(45deg);background:linear-gradient(135deg,#ab93ff,#5941c9)}
.control-visual[data-control-visual="approval"]{background:radial-gradient(circle at 70% 35%,rgba(23,170,143,.3),transparent 29%),linear-gradient(135deg,#0d1b1c,#071318)}
.control-visual[data-control-visual="approval"] .scene-orbit-a{width:190px;height:190px;right:34px;top:14px;border-color:rgba(67,220,182,.52)}
.control-visual[data-control-visual="approval"] .scene-orbit-b{right:70px;top:50px;border-color:rgba(67,220,182,.45)}
.control-visual[data-control-visual="approval"] .scene-core{background:radial-gradient(circle at 35% 30%,#8fffe1,#079778 70%)}
.control-visual[data-control-visual="cost"]{background:radial-gradient(circle at 70% 37%,rgba(236,170,42,.3),transparent 29%),linear-gradient(135deg,#20180c,#0e1116)}
.control-visual[data-control-visual="cost"] .scene-orbit-a{height:108px;top:57px;border-radius:50%;border-color:rgba(255,200,86,.55);box-shadow:0 18px 0 -1px rgba(255,200,86,.18),0 36px 0 -1px rgba(255,200,86,.1)}
.control-visual[data-control-visual="cost"] .scene-orbit-b{height:58px;top:81px;border-width:8px;border-color:rgba(255,200,86,.48)}
.control-visual[data-control-visual="cost"] .scene-core{background:radial-gradient(circle at 35% 30%,#ffe394,#c78008 72%)}
.control-visual[data-control-visual="logs"]{background:radial-gradient(circle at 70% 36%,rgba(220,72,99,.27),transparent 30%),linear-gradient(135deg,#211117,#0d1118)}
.control-visual[data-control-visual="logs"] .scene-orbit-a{width:188px;height:138px;top:40px;border-radius:16px;border-color:rgba(255,111,139,.45);box-shadow:inset 0 34px 0 rgba(255,111,139,.08)}
.control-visual[data-control-visual="logs"] .scene-orbit-b{width:124px;height:8px;right:48px;top:94px;border:0;border-radius:4px;background:rgba(255,111,139,.42);box-shadow:0 26px 0 rgba(255,111,139,.25),0 52px 0 rgba(255,111,139,.15)}
.control-visual[data-control-visual="logs"] .scene-core{right:190px;top:58px;width:12px;height:12px;background:#ff7893}
.control-visual[data-control-visual="kpi"]{background:radial-gradient(circle at 70% 36%,rgba(64,116,239,.32),transparent 30%),linear-gradient(135deg,#10172a,#081019)}
.control-visual[data-control-visual="kpi"] .scene-orbit-a{width:190px;height:142px;top:40px;border:0;border-radius:0;background:linear-gradient(135deg,transparent 48%,rgba(91,145,255,.7) 49% 52%,transparent 53%),linear-gradient(25deg,transparent 48%,rgba(93,220,255,.55) 49% 52%,transparent 53%)}
.control-visual[data-control-visual="kpi"] .scene-orbit-b{width:152px;height:92px;right:48px;top:72px;border:0;border-left:1px solid rgba(120,189,255,.45);border-bottom:1px solid rgba(120,189,255,.45);border-radius:0}
.control-visual[data-control-visual="kpi"] .scene-core{right:54px;top:62px;width:16px;height:16px;background:#5fd7ff}
@media(max-width:640px){.control-item{min-height:58px;padding:15px 4px 14px 0}.control-item:hover,.control-item:focus-visible{padding-left:8px}.control-arrow{width:22px;height:22px;flex-basis:22px}}

/* control list cleanup: no checkmarks or vertical dividers */
.home-control .control-list li,
.home-control .control-list li:nth-child(odd),
.home-control .control-list li:nth-child(even){border-left:0!important;border-right:0!important}
.home-control .control-list li::before,
.home-control .control-list li:nth-child(odd)::before,
.home-control .control-list li:nth-child(even)::before{content:none!important;display:none!important}

/* control list alignment: centered between rules, flush with rule start */
.control-list li{display:flex;align-items:stretch;padding:0}
.control-item{min-height:80px;padding:0;align-items:center}
.control-item:hover,.control-item:focus-visible{padding-left:0}
.control-item:hover span,.control-item:focus-visible span{transform:none}
@media (max-width:640px){
  .control-item{min-height:68px;padding:0}
}

/* control list: remove legacy column offsets with matching specificity */
.control-list li,
.control-list li:nth-child(odd),
.control-list li:nth-child(even){padding:0;margin:0}
.control-list li:nth-child(even){border-left:0}
.control-list li::before,
.control-list li:nth-child(even)::before{content:none}
.control-item{padding:0!important}
@media (max-width:640px){
  .control-list li,
  .control-list li:nth-child(odd),
  .control-list li:nth-child(even){padding:0;margin:0}
  .control-item{padding:0!important}
}

/* control heading: exact typography of the main section headings */
.home-control .control-heading h2.sec-head-two-lines{
  width:100%;
  max-width:none;
  margin:0;
  font-size:clamp(34px,3.32vw,51px);
  line-height:1.01;
  letter-spacing:-.045em;
  font-weight:inherit;
}
@media (max-width:900px){
  .home-control .control-heading h2.sec-head-two-lines{font-size:clamp(31px,5.6vw,43px)}
}
@media (max-width:560px){
  .home-control .control-heading h2.sec-head-two-lines{font-size:29px;line-height:1.04}
}


/* global h2 typography: unified site-wide */
h2{
  font-size:clamp(34px,3.32vw,51px)!important;
  line-height:1.01!important;
  letter-spacing:-.045em!important;
  font-weight:inherit!important;
  text-wrap:balance;
}
@media (max-width:900px){
  h2{font-size:clamp(31px,5.6vw,43px)!important}
}
@media (max-width:560px){
  h2{font-size:29px!important;line-height:1.04!important}
}


/* global h3 typography: unified site-wide */
h3{
  font-size:clamp(31px,2.45vw,42px)!important;
  line-height:1.04!important;
  letter-spacing:-.04em!important;
  font-weight:inherit!important;
  text-wrap:balance;
}
@media (max-width:900px){
  h3{font-size:clamp(29px,5vw,38px)!important}
}
@media (max-width:560px){
  h3{font-size:29px!important;line-height:1.05!important}
}


/* process cards: force titles to exactly two lines */
.process-grid .feature-card .process-card-title span{display:block}

/* process cards: slightly increase title-to-copy spacing */
.process-grid .feature-card .process-card-title{margin-bottom:12px!important}


/* control accordion details */
.control-list li{display:block!important}
.control-panel{overflow:hidden}
.control-panel[hidden]{display:none}
.control-panel p{max-width:38ch;margin:0;padding:0 36px 20px 0;color:#626a75;font-size:15px;line-height:1.5;letter-spacing:0}
.control-item[aria-expanded="true"] .control-arrow{opacity:1;transform:rotate(90deg)}
@media(max-width:640px){.control-panel p{padding:0 24px 18px 0;font-size:14px}}


/* control accordion: smooth staggered reveal */
.control-panel{
  display:block!important;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transform:translateY(-6px);
  transition:max-height .52s cubic-bezier(.22,.75,.2,1),opacity .28s ease,transform .42s ease;
}
.control-panel.is-open{max-height:180px;opacity:1;transform:translateY(0)}
.control-panel-line{
  display:block;
  opacity:0;
  transform:translate(-10px,8px);
  transition:opacity .3s ease,transform .42s cubic-bezier(.22,.75,.2,1);
}
.control-panel.is-open .control-panel-line{opacity:1;transform:translate(0,0)}
.control-panel.is-open .control-panel-line:nth-child(1){transition-delay:.08s}
.control-panel.is-open .control-panel-line:nth-child(2){transition-delay:.16s}
.control-panel.is-open .control-panel-line:nth-child(3){transition-delay:.24s}
@media(prefers-reduced-motion:reduce){.control-panel,.control-panel-line{transition:none!important}}


/* control visual: use the project brand blue */
.home-control .control-visual{
  background:
    radial-gradient(circle at 67% 36%,rgba(12,102,228,.20),transparent 28%),
    linear-gradient(135deg,#101827 0%,#07101d 100%)!important;
}
.home-control .scene-orbit-a{
  border-color:rgba(12,102,228,.72)!important;
  box-shadow:0 0 0 32px rgba(12,102,228,.07),0 0 0 72px rgba(12,102,228,.04)!important;
}
.home-control .scene-orbit-b{border-color:rgba(12,102,228,.36)!important}
.home-control .scene-core{
  background:var(--accent)!important;
  box-shadow:0 0 30px rgba(12,102,228,.48)!important;
}
.home-control .scene-node{
  background:var(--accent)!important;
  border-color:#8dbbff!important;
  box-shadow:0 0 18px rgba(12,102,228,.55)!important;
}
.home-control .scene-line,
.home-control .scene-ray{background:linear-gradient(90deg,var(--accent),#8dbbff)!important}


/* control accordion copy: natural wrapping without forced short lines */
.home-control .control-panel p{
  max-width:none;
  width:100%;
  text-wrap:pretty;
}
.home-control .control-panel-line{
  display:inline;
  white-space:normal;
  opacity:1;
  transform:none;
}
.home-control .control-panel-line:not(:last-child)::after{content:" "}
.home-control .control-panel.is-open .control-panel-line{
  opacity:1;
  transform:none;
}


/* control interactions: exact same blue as the primary header button */
.home-control .control-item:hover,
.home-control .control-item:focus-visible,
.home-control .control-item.is-active,
.home-control .control-item[aria-expanded="true"]{
  color:var(--primary)!important;
}
.home-control .control-arrow{
  color:var(--primary)!important;
  stroke:currentColor;
}
.home-control .control-item:focus-visible{
  outline-color:var(--primary)!important;
}


/* Control accordion arrow: preserve the outer ring antialiasing at SVG edges. */
.home-control .control-arrow{
  overflow:visible;
}

/* Visually reduce the filled control-arrow strokes by about 20%. */
.home-control .control-arrow path[fill="currentColor"]{
  stroke:#fff;
  stroke-width:.6px;
  paint-order:stroke fill;
}


/* Scroll-linked pixel rebuild for the homepage "Почему AgencyAI" section. */
.home-why.why-pixel-scroll{
  --why-blue-progress:0;
  --why-gray-progress:0;
  position:relative;
  min-height:190vh;
  overflow:clip;
  isolation:isolate;
  background:#fff;
}
.home-why.why-pixel-scroll>.container{
  position:sticky;
  top:0;
  z-index:2;
  min-height:100vh;
  display:flex;
  align-items:center;
}
.home-why.why-pixel-scroll .why-grid{width:100%}
.home-why.why-pixel-scroll .why-pixel-mosaic{
  position:absolute;
  inset:0;
  z-index:0;
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  grid-template-rows:repeat(5,minmax(0,1fr));
  pointer-events:none;
}
.home-why.why-pixel-scroll .why-pixel-cell{
  position:relative;
  overflow:hidden;
}
.home-why.why-pixel-scroll .why-pixel-layer{
  position:absolute;
  inset:-1px;
  display:block;
  transform-origin:center var(--pixel-origin,bottom);
  will-change:transform;
}
.home-why.why-pixel-scroll .why-pixel-blue{
  background:#0f55bd;
  transform:scaleY(clamp(0,calc((var(--why-blue-progress) - (var(--pixel-delay) * .28)) / .72),1));
}
.home-why.why-pixel-scroll .why-pixel-gray{
  background:#f3f5f7;
  transform:scaleY(clamp(0,calc((var(--why-gray-progress) - ((1 - var(--pixel-delay)) * .28)) / .72),1));
}
.home-why.why-pixel-scroll .sec-head,
.home-why.why-pixel-scroll .why-list{
  position:relative;
  z-index:1;
  transition:color .22s ease;
}
.home-why.why-pixel-scroll.is-blue-phase .sec-head,
.home-why.why-pixel-scroll.is-blue-phase .why-list,
.home-why.why-pixel-scroll.is-blue-phase .sec-lead{
  color:#fff;
}
.home-why.why-pixel-scroll.is-blue-phase .why-list>div{
  border-color:rgba(255,255,255,.24);
}
.home-why.why-pixel-scroll.is-blue-phase .eyebrow,
.home-why.why-pixel-scroll.is-blue-phase .why-list>div>span{
  color:#8edfff;
}
@media (max-width:900px){
  .home-why.why-pixel-scroll{min-height:165vh}
  .home-why.why-pixel-scroll>.container{min-height:100svh;padding-block:64px}
  .home-why.why-pixel-scroll .why-pixel-mosaic{grid-template-columns:repeat(6,minmax(0,1fr));grid-template-rows:repeat(10,minmax(0,1fr))}
}
@media (prefers-reduced-motion:reduce){
  .home-why.why-pixel-scroll{min-height:auto;background:#f3f5f7}
  .home-why.why-pixel-scroll>.container{position:relative;min-height:auto}
  .home-why.why-pixel-scroll .why-pixel-mosaic{display:none}
}


/* Corrected Cantor-style pixel-front transition for "Почему AgencyAI". */
.home-why.why-pixel-front{
  position:relative;
  min-height:220vh;
  overflow:clip;
  isolation:isolate;
  background:#fff;
}
.home-why.why-pixel-front>.container{
  position:sticky;
  top:0;
  z-index:2;
  min-height:100vh;
  display:flex;
  align-items:center;
}
.home-why.why-pixel-front .why-grid{width:100%}
.home-why.why-pixel-front .why-pixel-front-canvas{
  position:sticky;
  top:0;
  z-index:0;
  display:block;
  width:100%;
  height:100vh;
  margin-bottom:-100vh;
  pointer-events:none;
}
.home-why.why-pixel-front .sec-head,
.home-why.why-pixel-front .why-list,
.home-why.why-pixel-front .sec-lead,
.home-why.why-pixel-front .eyebrow,
.home-why.why-pixel-front .why-list>div>span{
  transition:color .16s linear,border-color .16s linear;
}
.home-why.why-pixel-front[data-pixel-stage="blue"] .sec-head,
.home-why.why-pixel-front[data-pixel-stage="blue"] .why-list,
.home-why.why-pixel-front[data-pixel-stage="blue"] .sec-lead{
  color:#fff;
}
.home-why.why-pixel-front[data-pixel-stage="blue"] .eyebrow,
.home-why.why-pixel-front[data-pixel-stage="blue"] .why-list>div>span{
  color:#69d9f3;
}
.home-why.why-pixel-front[data-pixel-stage="blue"] .why-list>div{
  border-color:rgba(255,255,255,.24);
}
.home-why.why-pixel-front .why-pixel-mosaic{display:none!important}
@media (max-width:900px){
  .home-why.why-pixel-front{min-height:190vh}
  .home-why.why-pixel-front>.container{min-height:100svh;padding-block:64px}
  .home-why.why-pixel-front .why-pixel-front-canvas{height:100svh;margin-bottom:-100svh}
}
@media (prefers-reduced-motion:reduce){
  .home-why.why-pixel-front{min-height:auto;background:#f3f5f7}
  .home-why.why-pixel-front>.container{position:relative;min-height:auto}
  .home-why.why-pixel-front .why-pixel-front-canvas{display:none}
}


/* Pixel-front tuning: begin before content and use 50% smaller blocks. */
.home-why.why-pixel-front{
  --why-animation-lead:38vh;
  margin-top:calc(var(--why-animation-lead) * -1);
  padding-top:var(--why-animation-lead);
  min-height:calc(220vh + var(--why-animation-lead));
}
@media (max-width:900px){
  .home-why.why-pixel-front{
    --why-animation-lead:28svh;
    min-height:calc(190svh + var(--why-animation-lead));
  }
}


/* Refined project-specific pixel front: earlier start, cleaner edge, smaller cells. */
.home-why.why-pixel-front{
  --why-animation-lead:62vh;
  margin-top:calc(var(--why-animation-lead) * -1);
  padding-top:var(--why-animation-lead);
  min-height:calc(230vh + var(--why-animation-lead));
}
.home-why.why-pixel-front .why-pixel-front-canvas{
  overflow:hidden;
}
@media (max-width:900px){
  .home-why.why-pixel-front{
    --why-animation-lead:44svh;
    min-height:calc(200svh + var(--why-animation-lead));
  }
}


/* Keep the pixel transition in its own flow; never overlap the preceding section. */
.home-why.why-pixel-front{
  margin-top:0;
  padding-top:var(--why-animation-lead);
}


/* No empty lead panel: the transition starts as the real section approaches. */
.home-why.why-pixel-front{
  padding-top:0;
  min-height:230vh;
  background:#fff;
}
@media (max-width:900px){
  .home-why.why-pixel-front{
    padding-top:0;
    min-height:200svh;
  }
}


/* Keep the Why copy inside the fully-blue interval; typography itself does not animate. */
.home-why.why-pixel-front>.container{
  position:relative;
  top:auto;
  min-height:100vh;
  margin-top:72vh;
  display:flex;
  align-items:center;
}
.home-why.why-pixel-front .sec-head,
.home-why.why-pixel-front .why-list,
.home-why.why-pixel-front .sec-lead{
  color:#fff;
  transition:none;
}
.home-why.why-pixel-front .eyebrow,
.home-why.why-pixel-front .why-list>div>span{
  color:#69d9f3;
  transition:none;
}
.home-why.why-pixel-front .why-list>div{
  border-color:rgba(255,255,255,.24);
}
@media (max-width:900px){
  .home-why.why-pixel-front>.container{
    margin-top:64svh;
  }
}


/* Final architecture: animated boundaries in normal document flow.
   The content is one regular blue section between an incoming and outgoing edge. */
.home-why.why-pixel-section{
  position:relative;
  min-height:auto;
  margin:0;
  padding:clamp(96px,10vw,180px) 0;
  overflow:visible;
  isolation:auto;
  background:#0f55bd;
  border:0;
}
.home-why.why-pixel-section>.container{
  position:relative;
  top:auto;
  z-index:1;
  min-height:auto;
  margin:0 auto;
  padding-top:0;
  padding-bottom:0;
  display:block;
}
.home-why.why-pixel-section .why-grid{width:100%}
.home-why.why-pixel-section .sec-head,
.home-why.why-pixel-section .why-list,
.home-why.why-pixel-section .sec-lead{
  color:#fff;
  transition:none;
}
.home-why.why-pixel-section .eyebrow,
.home-why.why-pixel-section .why-list>div>span{
  color:#69d9f3;
  transition:none;
}
.home-why.why-pixel-section .why-list>div{
  border-color:rgba(255,255,255,.24);
}
.why-pixel-boundary{
  position:relative;
  width:100%;
  height:72vh;
  min-height:420px;
  overflow:hidden;
  border:0;
  line-height:0;
}
.why-pixel-boundary-in{background:#fff}
.why-pixel-boundary-out{background:#0f55bd}
.why-pixel-boundary-canvas{
  display:block;
  width:100%;
  height:100%;
  border:0;
}
.why-pixel-boundary-out + .home-proof{border-top:0}
.home-why.why-pixel-section + .why-pixel-boundary-out{
  margin:0;
}
@media (max-width:900px){
  .home-why.why-pixel-section{
    min-height:auto;
    margin:0;
    padding:72px 0;
  }
  .home-why.why-pixel-section>.container{
    min-height:auto;
    margin:0 auto;
    padding-block:0;
  }
  .why-pixel-boundary{
    height:58svh;
    min-height:320px;
  }
}
@media (prefers-reduced-motion:reduce){
  .why-pixel-boundary{display:none}
  .home-why.why-pixel-section{background:#0f55bd}
}


/* Pixel transition layering v3: animated edges above the blue field, copy above all. */
.home-why.why-pixel-section{
  position:relative;
  z-index:auto;
  min-height:auto;
  margin:0;
  padding:clamp(120px,12vw,210px) 0;
  overflow:visible;
  background:transparent!important;
  border:0!important;
}
.home-why.why-pixel-section::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:#0f55bd;
  pointer-events:none;
}
.home-why.why-pixel-section>.container{
  position:relative;
  z-index:3;
  min-height:auto;
  margin:0 auto;
  padding:0;
}
.home-why.why-pixel-section .sec-head,
.home-why.why-pixel-section .why-list,
.home-why.why-pixel-section .sec-lead{
  color:#fff;
}
.home-why.why-pixel-section .eyebrow,
.home-why.why-pixel-section .why-list>div>span{
  color:#69d9f3;
}
.home-why.why-pixel-section .why-list>div{
  border-color:rgba(255,255,255,.24);
}
.why-pixel-boundary{
  position:relative;
  z-index:2;
  width:100%;
  height:72vh;
  min-height:420px;
  overflow:hidden;
  border:0!important;
  line-height:0;
  pointer-events:none;
}
.why-pixel-boundary-in{
  margin-bottom:-28vh;
  background:#fff;
}
.why-pixel-boundary-out{
  margin-top:-28vh;
  background:#0f55bd;
}
.why-pixel-boundary-canvas{
  position:absolute;
  inset:0;
  z-index:2;
  display:block;
  width:100%;
  height:100%;
  border:0;
}
@media (max-width:900px){
  .home-why.why-pixel-section{
    padding:92px 0;
  }
  .why-pixel-boundary{
    height:58svh;
    min-height:320px;
  }
  .why-pixel-boundary-in{margin-bottom:-22svh}
  .why-pixel-boundary-out{margin-top:-22svh}
}


/* Compact the pixel transition stage by 50%. */
.why-pixel-boundary{
  height:36vh;
  min-height:210px;
}
.why-pixel-boundary-in{
  margin-bottom:-14vh;
}
.why-pixel-boundary-out{
  margin-top:-14vh;
}
@media (max-width:900px){
  .why-pixel-boundary{
    height:29svh;
    min-height:160px;
  }
  .why-pixel-boundary-in{margin-bottom:-11svh}
  .why-pixel-boundary-out{margin-top:-11svh}
}


/* Pinned scroll scene: approach, hold for copy motion, then release upward. */
.why-pixel-scene{
  position:relative;
  height:260vh;
  min-height:1800px;
  background:#fff;
}
.why-pixel-stage{
  position:sticky;
  top:0;
  z-index:1;
  height:100vh;
  overflow:hidden;
  will-change:transform;
}
.why-pixel-stage>.why-pixel-boundary,
.why-pixel-stage>.home-why{
  position:absolute;
  left:0;
  width:100%;
}
.why-pixel-stage>.why-pixel-boundary-in{
  top:0;
  height:36vh;
  min-height:210px;
  margin:0;
  z-index:2;
}
.why-pixel-stage>.home-why.why-pixel-section{
  top:22vh;
  z-index:1;
  min-height:100vh;
  margin:0;
  padding:0;
  overflow:hidden;
}
.why-pixel-stage>.home-why.why-pixel-section::before{
  inset:0;
  background:#0f55bd;
}
.why-pixel-stage>.home-why.why-pixel-section>.container{
  z-index:3;
  min-height:100vh;
  display:flex;
  align-items:center;
  transform:translate3d(0,var(--why-copy-shift,24vh),0);
  will-change:transform;
}
.why-pixel-stage>.why-pixel-boundary-out{
  top:calc(100vh - 36vh);
  height:36vh;
  min-height:210px;
  margin:0;
  z-index:2;
}
.why-pixel-scene.is-held .why-pixel-stage{
  transform:none;
}
@media (max-width:900px){
  .why-pixel-scene{
    height:235svh;
    min-height:1500px;
  }
  .why-pixel-stage{
    height:100svh;
  }
  .why-pixel-stage>.why-pixel-boundary-in{
    height:29svh;
    min-height:160px;
  }
  .why-pixel-stage>.home-why.why-pixel-section{
    top:18svh;
    min-height:100svh;
  }
  .why-pixel-stage>.home-why.why-pixel-section>.container{
    min-height:100svh;
    padding-block:64px;
  }
  .why-pixel-stage>.why-pixel-boundary-out{
    top:calc(100svh - 29svh);
    height:29svh;
    min-height:160px;
  }
}
@media (prefers-reduced-motion:reduce){
  .why-pixel-scene{
    height:auto;
    min-height:0;
    background:#0f55bd;
  }
  .why-pixel-stage{
    position:relative;
    height:auto;
    overflow:visible;
    transform:none!important;
  }
  .why-pixel-stage>.why-pixel-boundary{display:none}
  .why-pixel-stage>.home-why.why-pixel-section{
    position:relative;
    top:auto;
    min-height:auto;
    padding:96px 0;
  }
  .why-pixel-stage>.home-why.why-pixel-section>.container{
    min-height:auto;
    transform:none!important;
  }
}

/* Why AgencyAI editorial content; pixel boundary animation remains managed by home-why-pixel-*.js */
.home-why .why-editorial-grid{display:block;width:100%;color:#fff}
.home-why .why-editorial-head{display:block;max-width:none}
.home-why .why-editorial-head .eyebrow{margin:0 0 16px;color:#fff;font:400 16px/19.504px 'Montserrat',sans-serif;text-transform:none;letter-spacing:0}
.home-why .why-display{margin:0;color:#fff;font:900 clamp(72px,8.65vw,138px)/1.219 'Montserrat',sans-serif;letter-spacing:0;white-space:nowrap}
.home-why .why-subtitle{margin:24px 0 0;color:#ffd400;font:300 clamp(28px,3vw,48px)/1.3 'IBM Plex Mono',monospace;letter-spacing:0}
.home-why .why-signal{display:flex;align-items:center;gap:12px;margin-top:58px;height:26px;color:#fff;overflow:hidden}
.home-why .why-terminal{display:grid;place-items:center;width:24px;height:24px;border:2px solid currentColor;border-radius:6px;font:600 13px/1 var(--mono);flex:none}
.home-why .why-bar{display:block;width:124px;height:24px;background:currentColor;flex:none}
.home-why .why-bar-wide{width:min(42vw,590px)}
.home-why .why-bar-short{width:64px}
.home-why .why-block{display:block;width:30px;height:24px;background:currentColor;flex:none}
.home-why .why-signal b{display:block;width:3px;height:23px;background:currentColor;flex:none}
.home-why .why-signal em{display:block;width:25px;height:25px;border-radius:50%;background:currentColor;flex:none}
.home-why .why-folder,.home-why .why-star{font-style:normal;font-size:23px;line-height:1;flex:none}
.home-why .why-editorial-points{position:relative;display:block;min-height:500px;margin-top:48px}
.home-why .why-editorial-points>div{position:absolute;max-width:355px;padding:0;border:0;background:transparent;color:#fff}
.home-why .why-editorial-points>div>span{display:block;height:.56em;margin-bottom:18px;overflow:hidden;color:#fff;font:500 30px/1.172 'Roboto',sans-serif}
.home-why .why-editorial-points h3{margin:0 0 12px;color:#fff;font:400 30px/1.219 'Montserrat',sans-serif;letter-spacing:0}
.home-why .why-editorial-points p{margin:0;max-width:330px;color:#fff;font:400 15px/1.219 'Montserrat',sans-serif}
.home-why .why-point-one{left:0;top:0}
.home-why .why-point-two{left:53%;top:50px}
.home-why .why-point-three{left:10%;top:270px}
.home-why .why-cta{position:absolute;left:53%;top:235px;display:flex;align-items:flex-end;gap:18px;color:#ffd400;font:500 24px/1.3 'IBM Plex Mono',monospace;text-decoration:underline;text-underline-offset:5px}
.home-why .why-cta:hover{color:#fff}
.home-why .why-cta svg{width:150px;height:auto;flex:none}
.home-why.why-pixel-section>.container{padding-top:80px;padding-bottom:74px}
@media(max-width:1050px){
  .home-why .why-display{font-size:clamp(54px,8.7vw,88px)}
  .home-why .why-signal{gap:8px}.home-why .why-bar-wide{width:38vw}.home-why .why-bar{width:90px}
}
@media(max-width:900px){
  .home-why .why-display{font-size:clamp(42px,11vw,72px);white-space:normal}
  .home-why .why-subtitle{font-size:clamp(22px,6vw,32px);overflow-wrap:anywhere}
  .home-why .why-signal{margin-top:40px;gap:6px}.home-why .why-bar-wide{width:40vw}.home-why .why-bar{width:52px}.home-why .why-bar-short{width:30px}
  .home-why .why-editorial-points{display:grid;grid-template-columns:1fr;gap:38px;min-height:0;margin-top:42px}
  .home-why .why-editorial-points>div,.home-why .why-cta{position:static;max-width:none}
  .home-why .why-editorial-points h3{font-size:28px;max-width:380px}.home-why .why-editorial-points p{max-width:460px}
  .home-why .why-cta{align-items:center}.home-why .why-cta svg{width:118px}
  .why-pixel-stage>.home-why.why-pixel-section>.container{align-items:flex-start;overflow-y:auto}
}

.home-why{background:#0f55bd;color:#fff}

/* Integration map cells: one typography system for every label. */
.flow-pill-chip,
.flow-pill-label{
  font-family:'Roboto Condensed',Arial Narrow,sans-serif!important;
  font-size:15px!important;
  font-style:normal!important;
  font-weight:500!important;
  font-stretch:normal!important;
  line-height:1!important;
  letter-spacing:.055em!important;
  text-transform:uppercase!important;
  font-variant:normal!important;
  font-feature-settings:normal!important;
}

/* ---------- unified FAQ system ---------- */
.faq-section{padding:126px 0;border-top:0!important;background:#F7F8FA}
.faq-section .container{max-width:1440px}
.faq-section .sec-head{display:block;max-width:none;margin:0 0 96px;text-align:left}
.faq-section .sec-head .eyebrow{display:none}
.faq-section .sec-head h2{margin:0;font-family:var(--disp);font-size:clamp(34px,3.32vw,51px)!important;line-height:1.01!important;letter-spacing:-.045em;font-weight:400!important;color:#1E1F21;text-wrap:balance}
.faq-section .faq-sub{display:none}
.faq-section .faq{max-width:none;margin:0;border:0;border-radius:0;overflow:visible}
.faq-section .faq details{margin:0;padding:0;border:0;border-bottom:1px solid #dedede}
.faq-section .faq details:last-child{border-bottom:1px solid #dedede}
.faq-section .faq summary{position:relative;min-height:72px;padding:22px 0;gap:28px;font-family:var(--disp);font-size:clamp(18px,1.45vw,24px);font-weight:400;line-height:1.25;letter-spacing:normal;color:#171b22}
.faq-section .faq summary::marker{content:""}
.faq-section .faq summary::-webkit-details-marker{display:none}
.faq-section .faq summary::before{content:none}
.faq-section .faq summary::after{content:"+";display:block;flex:0 0 28px;width:28px;margin-left:auto;background:none;font-family:Arial,sans-serif;font-size:31.5px;font-weight:300;line-height:1;text-align:center;color:#707070;transform:rotate(0deg);transform-origin:50% 50%;transition:transform .34s cubic-bezier(.22,1,.36,1),color .2s ease,opacity .2s ease}
.faq-section .faq details[open] summary::after{content:"+";transform:rotate(45deg);color:#707070}
.faq-section .faq-a{height:0;overflow:hidden;opacity:0;max-width:78%;padding:0;will-change:height,opacity}
.faq-section .faq details[open] .faq-a{height:auto;opacity:1}
.faq-section .faq-a p{margin:0;padding:0 0 26px;font-family:var(--disp);font-size:15px;font-weight:400;line-height:1.5;letter-spacing:0;color:#626a75}
@media (max-width:900px){
  .faq-section{padding:112px 0}
  .faq-section .sec-head{margin-bottom:72px}
  .faq-section .sec-head h2{font-size:clamp(31px,5.6vw,43px)!important}
}
@media (max-width:560px){
  .faq-section{padding:102px 0}
  .faq-section .sec-head{margin-bottom:44px}
  .faq-section .sec-head h2{font-size:29px!important;line-height:1.04!important}
  .faq-section .faq-a{max-width:100%}
  .faq-section .faq summary{min-height:64px;padding:18px 0;font-size:20px;gap:18px}
  .faq-section .faq-a p{padding-bottom:22px;font-size:14px}
}
@media (prefers-reduced-motion:reduce){
  .faq-section .faq summary::after{transition:none}
  .faq-section .faq-a{will-change:auto}
}
